github.com/vlifesystems/rulehunter@v0.0.0-20180501090014-673078aa4a83/examples/csv/bank.txt (about)

     1  Citation Request:
     2    This dataset is public available for research. The details are described in [Moro et al., 2011].
     3    Please include this citation if you plan to use this database:
     4  
     5    [Moro et al., 2011] S. Moro, R. Laureano and P. Cortez. Using Data Mining for Bank Direct Marketing: An Application of the CRISP-DM Methodology.
     6    In P. Novais et al. (Eds.), Proceedings of the European Simulation and Modelling Conference - ESM'2011, pp. 117-121, Guimarães, Portugal, October, 2011. EUROSIS.
     7  
     8    Available at: [pdf] http://hdl.handle.net/1822/14838
     9                  [bib] http://www3.dsi.uminho.pt/pcortez/bib/2011-esm-1.txt
    10  
    11  1. Title: Bank Marketing
    12  
    13  2. Sources
    14     Created by: Paulo Cortez (Univ. Minho) and Sérgio Moro (ISCTE-IUL) @ 2012
    15  
    16  Data Source:
    17    UCI Machine Learning Repository [http://archive.ics.uci.edu/ml].
    18    Irvine, CA: University of California, School of Information and
    19    Computer Science.
    20  	https://archive.ics.uci.edu/ml/datasets/bank+marketing
    21  
    22  3. Past Usage:
    23  
    24    The full dataset was described and analyzed in:
    25  
    26    S. Moro, R. Laureano and P. Cortez. Using Data Mining for Bank Direct Marketing: An Application of the CRISP-DM Methodology.
    27    In P. Novais et al. (Eds.), Proceedings of the European Simulation and Modelling Conference - ESM'2011, pp. 117-121, Guimarães,
    28    Portugal, October, 2011. EUROSIS.
    29  
    30  4. Relevant Information:
    31  
    32     The data is related with direct marketing campaigns of a Portuguese banking institution.
    33     The marketing campaigns were based on phone calls. Often, more than one contact to the same client was required,
    34     in order to access if the product (bank term deposit) would be (or not) subscribed.
    35  
    36     There are two datasets:
    37        1) bank-full.csv with all examples, ordered by date (from May 2008 to November 2010).
    38        2) bank.csv with 10% of the examples (4521), randomly selected from bank-full.csv.
    39     The smallest dataset is provided to test more computationally demanding machine learning algorithms (e.g. SVM).
    40  
    41     The classification goal is to predict if the client will subscribe a term deposit (variable y).
    42  
    43  5. Number of Instances: 45211 for bank-full.csv (4521 for bank.csv)
    44  
    45  6. Number of Attributes: 16 + output attribute.
    46  
    47  7. Attribute information:
    48  
    49     For more information, read [Moro et al., 2011].
    50  
    51     Input variables:
    52     # bank client data:
    53     1 - age (numeric)
    54     2 - job : type of job (categorical: "admin.","unknown","unemployed","management","housemaid","entrepreneur","student",
    55                                         "blue-collar","self-employed","retired","technician","services")
    56     3 - marital : marital status (categorical: "married","divorced","single"; note: "divorced" means divorced or widowed)
    57     4 - education (categorical: "unknown","secondary","primary","tertiary")
    58     5 - default: has credit in default? (binary: "yes","no")
    59     6 - balance: average yearly balance, in euros (numeric)
    60     7 - housing: has housing loan? (binary: "yes","no")
    61     8 - loan: has personal loan? (binary: "yes","no")
    62     # related with the last contact of the current campaign:
    63     9 - contact: contact communication type (categorical: "unknown","telephone","cellular")
    64    10 - day: last contact day of the month (numeric)
    65    11 - month: last contact month of year (categorical: "jan", "feb", "mar", ..., "nov", "dec")
    66    12 - duration: last contact duration, in seconds (numeric)
    67     # other attributes:
    68    13 - campaign: number of contacts performed during this campaign and for this client (numeric, includes last contact)
    69    14 - pdays: number of days that passed by after the client was last contacted from a previous campaign (numeric, -1 means client was not previously contacted)
    70    15 - previous: number of contacts performed before this campaign and for this client (numeric)
    71    16 - poutcome: outcome of the previous marketing campaign (categorical: "unknown","other","failure","success")
    72  
    73    Output variable (desired target):
    74    17 - y - has the client subscribed a term deposit? (binary: "yes","no")
    75  
    76  8. Missing Attribute Values: None