In
statistics,
binary data is a
statistical data type consisting of
categorical data, that can take exactly two possible values, such as "A" and "B", or "heads" and "tails". It is also called
dichotomous data, and an older term is
quantal data. The two values are often referred to generically as "success" and "failure". As a form of categorical data, binary data is
nominal data, meaning the values are
qualitatively different and cannot be compared numerically. However, the values are frequently represented as 1 or 0, which corresponds to counting the number of successes in a single trial: 1 (success…) or 0 (failure); see . More intuitively, binary data can be represented as
count data. Often, binary data is used to represent one of two conceptually opposed values, e.g.: • the outcome of an experiment ("success" or "failure") • the response to a yes–no question ("yes" or "no") • presence or absence of some feature ("is present" or "is not present") • the truth or falsehood of a proposition ("true" or "false", "correct" or "incorrect") However, it can also be used for data that is assumed to have only two possible values, even if they are not conceptually opposed or conceptually represent all possible values in the space. For example, binary data is often used to represent the party choices of voters in elections in the United States, i.e.
Republican or
Democratic. In this case, there is no inherent reason why only two
political parties should exist, and indeed, other parties do exist in the U.S., but they are so minor that they are generally simply ignored. Modeling continuous data (or categorical data of more than 2 categories) as a binary variable for analysis purposes is called
dichotomization (creating a
dichotomy). Like all discretization, it involves
discretization error, but the goal is to learn something valuable despite the error: treating it as
negligible for the purpose at hand, but remembering that it cannot be assumed to be negligible in general.
Binary variables A
binary variable is a
random variable of binary type, meaning with two possible values.
Independent and identically distributed (i.i.d.) binary variables follow a
Bernoulli distribution, but in general binary data need not come from i.i.d. variables. Total counts of i.i.d. binary variables (equivalently, sums of i.i.d. binary variables coded as 1 or 0) follow a
binomial distribution, but when binary variables are not i.i.d., the distribution need not be binomial.
Counting Like categorical data, binary data can be converted to a
vector of
count data by writing one coordinate for each possible value, and counting 1 for the value that occurs, and 0 for the value that does not occur. For example, if the values are A and B, then the data set A, A, B can be represented in counts as (1, 0), (1, 0), (0, 1). Once converted to counts, binary data can be
grouped and the counts added. For instance, if the set A, A, B is grouped, the total counts are (2, 1): 2 A's and 1 B (out of 3 trials). Since there are only two possible values, this can be simplified to a single count (a scalar value) by considering one value as "success" and the other as "failure", coding a value of the success as 1 and of the failure as 0 (using only the coordinate for the "success" value, not the coordinate for the "failure" value). For example, if the value A is considered "success" (and thus B is considered "failure"), the data set A, A, B would be represented as 1, 1, 0. When this is grouped, the values are added, while the number of trial is generally tracked implicitly. For example, A, A, B would be grouped as 1 + 1 + 0 = 2 successes (out of n = 3 trials). Going the other way, count data with n = 1 is binary data, with the two classes being 0 (failure) or 1 (success). Counts of i.i.d. binary variables follow a binomial distribution, with the total number of trials (points in the grouped data).
Regression Regression analysis on predicted outcomes that are binary variables is known as
binary regression; when binary data is converted to count data and modeled as i.i.d. variables (so they have a binomial distribution),
binomial regression can be used. The most common regression methods for binary data are
logistic regression,
probit regression, or related types of
binary choice models. Similarly, counts of i.i.d. categorical variables with more than two categories can be modeled with a
multinomial regression. Counts of non-i.i.d. binary data can be modeled by more complicated distributions, such as the
beta-binomial distribution (a
compound distribution). Alternatively, the
relationship can be modeled without needing to explicitly model the distribution of the output variable using techniques from
generalized linear models, such as
quasi-likelihood and a
quasibinomial model; see . ==In computing==