some questions about your data

17
Some Key Questions about you Data Damian Gordon Brendan Tierney Brian Mac Namee

Post on 21-Oct-2014

809 views

Category:

Education


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Some Questions About Your Data

Some Key Questions about you Data

Damian Gordon

Brendan TierneyBrian Mac Namee

Page 2: Some Questions About Your Data

If the data is the key consideration in your research (although not all projects will necessarily be concerned with large datasets) it is important to consider several questions for those projects that do.

The Data

Page 3: Some Questions About Your Data

How suitable is the data? What is the type of the data? Where will you get it from? What size is the dataset? What format is it in? How much cleaning is required? What is the quality of the data? How do you deal with missing data? How will you evaluate your analysis? etc.

Overview

Page 4: Some Questions About Your Data

Determining the suitability of the data is a vital consideration, it is not sufficient to simply locate a dataset that is thematically linked to your research question, it must be appropriate to explore the questions that you want to ask.

For example, just because you want to do Credit Card Fraud detection and you have a dataset that contains Credit Card transactions or was used in another Credit Card Fraud project, does not mean that it will be suitable for your project.

Suitability: Dataset

Page 5: Some Questions About Your Data

Is the data already labelled?

This is very important for supervised learning problems.

To take the credit card fraud example again, you can probably get as many credit card transactions as you like but you probably won't be able to get them marked up as fraudulent and non-fraudulent.

Suitability: Labelling

Page 6: Some Questions About Your Data

The same thing goes for a lot of text analytics problems - can you get people to label thousands of documents as being interesting or non-interesting to them so that you can train a predictive model?

The availability of labelled data is a key consideration for any supervised learning problem.

The areas of semi-supervised learning and active learning try to address this problem and have some very interesting open research questions.

Suitability: Labelling

Page 7: Some Questions About Your Data

Two important considerations:

The Curse of Dimensionality – When the dimensionality increases, the volume of the space increases so fast that the available data becomes sparse. In order to obtain a statistically sound result, the amount of data you need often grows exponentially with the dimensionality.

The No Free Lunch Theorem - Classifier performance depends greatly on the characteristics of the data to be classified. There is no single classifier that works best on all given problems.

Suitability: Labelling

Page 8: Some Questions About Your Data

Also remember for labelling, you might be aiming for one of three goals:

Binary classifications – classifying each data item to one of two categories.

Multiclass classifications - classifying each data item to more than two categories.

Multi-label classifications - classifying each data item to multiple target labels.

Suitability: Labelling

Page 9: Some Questions About Your Data

Federated data High dimensional data Descriptive data Longitudinal data Streaming data Web (scraped) data Numeric vs. categorical vs. text data etc.

Types of Data

Page 10: Some Questions About Your Data

http://researchmethodsdataanalysis.blogspot.com/2011/11/dataset-sites.html

e.g. http://www.kdnuggets.com/datasets/ http://www.google.com/publicdata/directory http://opendata.ie/ http://lib.stat.cmu.edu/datasets/

Locating Datasets

Page 11: Some Questions About Your Data

What is a reasonable size of a dataset?

Obviously it vary a lot from problem to problem, but in general we would recommend at least 10 features (columns) in the dataset, and we’d like to see thousands of instances.

Size of the Dataset

Page 12: Some Questions About Your Data

TXT (Text file) MIME (Multipurpose Internet Mail Extensions) XML (Extensible Markup Language) CSV (Comma-Separated Values) ACSII (American Standard Code for Information

Interchange) etc.

Format of the Data

Page 13: Some Questions About Your Data

Parsing Correcting Standardizing Matching Consolidating

Cleaning of Data

Page 14: Some Questions About Your Data

Frequency counts Descriptive statistics (mean, standard deviation,

median) Normality (skewness, kurtosis, frequency

histograms, normal probability plots) Associations (correlations, scatter plots)

Quality of the Data

Page 15: Some Questions About Your Data

Imputation Partial imputation Partial deletion Full analysis

Also consider database nullology

Missing Data?

Page 16: Some Questions About Your Data

How confident are you in the outcomes of your analysis?

Area under the Curve Misclassification Error Confusion Matrix N-fold Cross Validation Test predictions using the real-world

Evaluating the Analysis

Page 17: Some Questions About Your Data

Other questions?

The Data