Title: | Statistical Entropy Analysis of Network Data |
---|---|
Description: | Statistical entropy analysis of network data as introduced by Frank and Shafie (2016) <doi:10.1177/0759106315615511>, and a in textbook which is in progress. |
Authors: | Termeh Shafie [aut, cre] |
Maintainer: | Termeh Shafie <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.2.0 |
Built: | 2025-02-25 03:31:21 UTC |
Source: | https://github.com/termehs/netropy |
Draws association graphs (graphical models) based on joint entropy values to detect and visualize different dependence structures among the variables in the dataframe.
assoc_graph(dat, cutoff = 0)
assoc_graph(dat, cutoff = 0)
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
cutoff |
the cutoff point for the edges to be drawn based on joint entropies. Default is 0 and draws all edges. |
Draws association graphs based on given thresholds of joint entropy values between pairs of variables represented as nodes. Thickness of edges between pairs of nodes/variables indicates the strength of dependence between them. Isolated nodes are completely independent and paths through certain nodes/variables indicate conditional dependencies.
A ggraph object with nodes representing all variables in dat
and edges
representing (the strength of) associations between them based on joint entropies.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
library(ggraph) # use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # association graph based on cutoff 0.15 assoc_graph(df.att.ed, 0.15)
library(ggraph) # use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # association graph based on cutoff 0.15 assoc_graph(df.att.ed, 0.15)
Tests of various hypothetical structural models p0 against the general model p which is estimated using empirical data.
div_gof(dat, var1, var2, var_cond = NULL)
div_gof(dat, var1, var2, var_cond = NULL)
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
var1 |
variable name as character in |
var2 |
variable name as character in |
var_cond |
character of variable name in |
this function is currently implemented to only test goodness of fit of models specified as X independent of Y, or X independent of Y given Z.
Message indicating whether the hypothesis with the specified independence model can be rejected or not on approximately 5% level of significance.
summary |
Dataframe including the value of the divergence D and its degrees of freedom |
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
joint_entropy
, assoc_graph
, entropy_trivar
# Data editing and creation of dyad variables: data(lawdata) adj.advice <- lawdata[[1]] adj.friend <- lawdata[[2]] adj.cowork <-lawdata[[3]] df.att <- lawdata[[4]] att.var <- data.frame( status = df.att$status-1, gender = df.att$gender, office = df.att$office-1, years = ifelse(df.att$years<=3,0, ifelse(df.att$years<=13,1,2)), age = ifelse(df.att$age<=35,0, ifelse(df.att$age<=45,1,2)), practice = df.att$practice, lawschool= df.att$lawschool-1) dyad.status <- get_dyad_var(att.var$status, type = 'att') dyad.gender <- get_dyad_var(att.var$gender, type = 'att') dyad.office <- get_dyad_var(att.var$office, type = 'att') dyad.years <- get_dyad_var(att.var$years, type = 'att') dyad.age <- get_dyad_var(att.var$age, type = 'att') dyad.practice <- get_dyad_var(att.var$practice, type = 'att') dyad.lawschool <- get_dyad_var(att.var$lawschool, type = 'att') dyad.cwk <- get_dyad_var(adj.cowork, type = 'tie') dyad.adv <- get_dyad_var(adj.advice, type = 'tie') dyad.frn <- get_dyad_var(adj.friend, type = 'tie') dyad.var <- data.frame(cbind(status = dyad.status$var, gender = dyad.gender$var, office = dyad.office$var, years = dyad.years$var, age = dyad.age$var, practice = dyad.practice$var, lawschool = dyad.lawschool$var, cowork = dyad.cwk$var, advice = dyad.adv$var, friend = dyad.frn$var) ) # To test whether friend is independent of cowork given advice: div_gof(dat = dyad.var, var1 = "friend", var2 = "cowork", var_cond = "advice")
# Data editing and creation of dyad variables: data(lawdata) adj.advice <- lawdata[[1]] adj.friend <- lawdata[[2]] adj.cowork <-lawdata[[3]] df.att <- lawdata[[4]] att.var <- data.frame( status = df.att$status-1, gender = df.att$gender, office = df.att$office-1, years = ifelse(df.att$years<=3,0, ifelse(df.att$years<=13,1,2)), age = ifelse(df.att$age<=35,0, ifelse(df.att$age<=45,1,2)), practice = df.att$practice, lawschool= df.att$lawschool-1) dyad.status <- get_dyad_var(att.var$status, type = 'att') dyad.gender <- get_dyad_var(att.var$gender, type = 'att') dyad.office <- get_dyad_var(att.var$office, type = 'att') dyad.years <- get_dyad_var(att.var$years, type = 'att') dyad.age <- get_dyad_var(att.var$age, type = 'att') dyad.practice <- get_dyad_var(att.var$practice, type = 'att') dyad.lawschool <- get_dyad_var(att.var$lawschool, type = 'att') dyad.cwk <- get_dyad_var(adj.cowork, type = 'tie') dyad.adv <- get_dyad_var(adj.advice, type = 'tie') dyad.frn <- get_dyad_var(adj.friend, type = 'tie') dyad.var <- data.frame(cbind(status = dyad.status$var, gender = dyad.gender$var, office = dyad.office$var, years = dyad.years$var, age = dyad.age$var, practice = dyad.practice$var, lawschool = dyad.lawschool$var, cowork = dyad.cwk$var, advice = dyad.adv$var, friend = dyad.frn$var) ) # To test whether friend is independent of cowork given advice: div_gof(dat = dyad.var, var1 = "friend", var2 = "cowork", var_cond = "advice")
Computes the bivariate entropies between all pairs of (discrete) variables in a multivariate data set.
entropy_bivar(dat)
entropy_bivar(dat)
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
The bivariate entropy H(X,Y) of two discrete random variables X and Y
can be used to check for functional relationships and stochastic independence between pairs of variables.
The bivariate entropy is bounded according to
H(X) <= H(X,Y) <= H(X) + H(Y)
where H(X) and H(Y) are the univariate entropies.
Upper triangular matrix giving bivariate entropies between pairs of variables given as rows and columns of the matrix. The univariate entropies are given in the diagonal.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
joint_entropy
, entropy_trivar
, redundancy
, prediction_power
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # calculate bivariate entropies H.biv <- entropy_bivar(df.att.ed) # univariate entropies are then given as diag(H.biv)
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # calculate bivariate entropies H.biv <- entropy_bivar(df.att.ed) # univariate entropies are then given as diag(H.biv)
Computes trivariate entropies of all triples of (discrete) variables in a multivariate data set.
entropy_trivar(dat)
entropy_trivar(dat)
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
Trivariate entropies can be used to check for functional relationships and
stochastic independence between triples of variables.
The trivariate entropy H(X,Y,Z) of three discrete random variables X, Y and Z
is bounded according to
H(X,Y) <= H(X,Y,Z) <= H(X,Z) + H(Y,Z) - H(Z).
The increment between the trivariate entropy and its lower bound is equal to the expected conditional entropy.
Dataframe with the first three columns representing possible triples of variables (V1,V2,V3
)
and the fourth column gives trivariate entropies H(V1,V2,V3)
.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
entropy_bivar
, prediction_power
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # calculate trivariate entropies H.triv <- entropy_trivar(df.att.ed)
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # calculate trivariate entropies H.triv <- entropy_trivar(df.att.ed)
Transforms vertex variables or observed directed/undirected ties into dyad variables.
get_dyad_var(var, type = "att")
get_dyad_var(var, type = "att")
var |
variable vector (actor attribute) or adjacency matrix (ties) to be transformed to a dyad variable. |
type |
either 'att' for actor attribute (default) or 'tie' for relations. |
Dyad variables are given as pairs of incident vertex variables
or actor attributes. Here, unique pairs of original attribute values
constitute the outcome space. Note that the actor attributes need
to be categorical with finite range spaces. For example, binary
attribute yields outcome space (0,0), (0,1), (1,0), (1,1) coded as (0),(1),(2),(3).
Warning message is shown if actor attribute has too many unique outcomes
as it will yield too many possible outcomes once converted in to a dyad variable.
For directed relations, pairs of indicators from the adjacency matrix constitute
the four outcomes representing possible combinations of sending and receiving ties:
(0,0), (0,1), (1,0), (1,1) coded as (0),(1),(2),(3).
For undirected relations, an indicator variable which is directly read from the
adjacency matrix represents the dyadic variable.
Dataframe with three columns:
first two columns show the vertex pairs u
and v
where u<v
,
and the third column gives the value of the transformed dyadic variable var
.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
# use internal data set data(lawdata) adj.advice <- lawdata[[1]] adj.cowork <- lawdata[[3]] df.att <- lawdata[[4]] # three steps of data editing of attribute dataframe: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # actor attribute converted to dyad variable dyad.gend <- get_dyad_var(df.att.ed$gender, "att") # directed tie converted to dyad variable dyad.adv <- get_dyad_var(adj.advice, "tie") # undirected tie converted to dyad variable dyad.cwk <- get_dyad_var(adj.cowork, "tie")
# use internal data set data(lawdata) adj.advice <- lawdata[[1]] adj.cowork <- lawdata[[3]] df.att <- lawdata[[4]] # three steps of data editing of attribute dataframe: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # actor attribute converted to dyad variable dyad.gend <- get_dyad_var(df.att.ed$gender, "att") # directed tie converted to dyad variable dyad.adv <- get_dyad_var(adj.advice, "tie") # undirected tie converted to dyad variable dyad.cwk <- get_dyad_var(adj.cowork, "tie")
Transforms vertex variables or observed directed/undirected ties into triad variables.
get_triad_var(var, type = "att")
get_triad_var(var, type = "att")
var |
variable vector (actor attribute) or adjacency matrix (ties) to be transformed to a triad variable. |
type |
either 'att' for actor attribute (default) or 'tie' for relations. |
For actor attributes, unique triples of original attribute values
constitute the outcome space. Note that the actor
attributes need to be categorical with finite range spaces.
For example, binary attributes have 8 possible triadic outcomes
(0,0,0),(1,0,0),(0,1,0),(1,1,0),(0,0,1),(1,0,1),(0,1,1),(1,1,1)
which are coded 0-7.
Warning message is shown if actor attribute has too many unique outcomes
as it will yield too many possible outcomes once converted in to a triad variable.
For directed relations, a sequence of indicators of length 6 created from the adjacency matrix
constitutes the 64 outcomes representing possible combinations of sending and receiving ties.
For undirected relations, triples of indicators are created from the adjacency matrix.
Dataframe with four columns:
first three columns show the vertex triad u
, v
, w
,
and the fourth column gives the value of the transformed triadic variable var
.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
# use internal data set data(lawdata) adj.advice <- lawdata[[1]] adj.cowork <- lawdata[[3]] df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # actor attribute converted to triad variable triad.gend <- get_triad_var(df.att.ed$gender, "att") # directed tie converted to triad variable triad.adv <- get_triad_var(adj.advice, type = "tie") # undirected tie converted to triad variable triad.cwk <- get_triad_var(adj.cowork, type = "tie")
# use internal data set data(lawdata) adj.advice <- lawdata[[1]] adj.cowork <- lawdata[[3]] df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # actor attribute converted to triad variable triad.gend <- get_triad_var(df.att.ed$gender, "att") # directed tie converted to triad variable triad.adv <- get_triad_var(adj.advice, type = "tie") # undirected tie converted to triad variable triad.cwk <- get_triad_var(adj.cowork, type = "tie")
Computes the joint entropies between all pairs of (discrete) variables in a multivariate data set.
joint_entropy(dat, dec = 3)
joint_entropy(dat, dec = 3)
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
dec |
the precision given in number of decimals for which the frequency distribution of unique entropy values is created. Default is 3. |
The joint entropy J(X,Y) of discrete variables X and Y
is a measure of dependence or association between them, defined as
J(X,Y) = H(X) + H(Y) - H(X,Y).
Two variables are independent if their joint entropy, i.e. their mutual information, is equal to zero. The frequency distributions can be used to decide upon convenient thresholds for constructing association graphs.
List with
matrix |
an upper triangular joint entropy matrix (univariate entropies in the diagonal). |
freq |
a dataframe giving the frequency distributions of unique joint entropy values. |
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # calculate joint entropies J <- joint_entropy(df.att.ed) # joint entropy matrix J$matrix # frequency distribution of joint entropy values J$freq
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # calculate joint entropies J <- joint_entropy(df.att.ed) # joint entropy matrix J$matrix # frequency distribution of joint entropy values J$freq
This data set comes from a network study of corporate law partnership that was carried out in a Northeastern US corporate law firm, referred to as SG&R, 1988-1991 in New England. It includes (among others) measurements of networks among the 71 attorneys (partners and associates) of this firm, i.e. their strong- co-worker network, advice network, friendship network, and indirect control networks. Various members' attributes are also part of the data set, including seniority, formal status, office in which they work, gender, law school attended. The ethnography, organizational and network analyses of this case are available in Lazega (2001).
Basic advice network: "Think back over the past year, consider all the lawyers in your Firm. To whom did you go for basic professional advice? For instance, you want to make sure that you are handling a case right, making a proper decision, and you want to consult someone whose professional opinions are in general of great value to you. By advice I do not mean simply technical advice."
Friendship network: "Would you go through this list, and check the names of those you socialize with outside work. You know their family, they know yours, for instance. I do not mean all the people you are simply on a friendly level with, or people you happen to meet at Firm functions."
Strong coworkers network: "Because most firms like yours are also organized very informally, it is difficult to get a clear idea of how the members really work together. Think back over the past year, consider all the lawyers in your Firm. Would you go through this list and check the names of those with whom you have worked with. (By "worked with" I mean that you have spent time together on at least one case, that you have been assigned to the same case, that they read or used your work product or that you have read or used their work product; this includes professional work done within the Firm like Bar association work, administration, etc.)"
data(lawdata)
data(lawdata)
List containing the following objects as numbered
adjacency matrix for advice seeking (directed)
adjacency matrix for friendship (directed)
adjacency matrix for cowork (undirected)
dataframe with the following attributes on each lawyer:
'senior': seniority (ranked from most to least senior)
'status': 1=partner; 2=associate
'gender': 1=man; 2=woman
'office': 1=Boston; 2=Hartford; 3=Providence
'years': years with the firm
'age': age of attorney
'practice': 1=litigation; 2=corporate
'lawschool': 1=harvard/yale; 2=ucon; 3= other
Note: the first 36 out of 71 respondents are the partners in the firm.
https://www.stats.ox.ac.uk/~snijders/siena/Lazega_lawyers_data.htm
Emmanuel Lazega, The Collegial Phenomenon: The Social Mechanisms of Cooperation Among Peers in a Corporate Law Partnership, Oxford University Press (2001).
Tom A.B. Snijders, Philippa E. Pattison, Garry L. Robins, and Mark S. Handcock. New specifications for exponential random graph models. Sociological Methodology (2006), 99-153.
data(lawdata) ## assign the correct names to the objects in the list adj.advice <- lawdata[[1]] adj.friend <- lawdata[[2]] adj.cowork <-lawdata[[3]] df.att <- lawdata[[4]]
data(lawdata) ## assign the correct names to the objects in the list adj.advice <- lawdata[[1]] adj.friend <- lawdata[[2]] adj.cowork <-lawdata[[3]] df.att <- lawdata[[4]]
Computes prediction power when pairs of variables in a given dataframe are used to predict a third variable from the same dataframe. The prediction strength is measured by expected conditional entropies.
prediction_power(var, dat)
prediction_power(var, dat)
var |
character string representing the variable in
dataframe |
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
The expected conditional entropy given by
EH(Z|X,Y) = H(X,Y,Z) - H(X, Y)
measures the prediction uncertainty when pairs of variables X and Y are used to predict variable Z. The lower the value of EH given different pairs of variables X and Y, the stronger is the prediction of Z.
Upper triangular matrix giving the expected conditional entropies of pairs of variables
given as rows and columns of the matrix. The diagonal gives EH(Z|X) = H(X,Z) - H(X), that is
when only one variable is used to predict var
. Note that NA
's are in the entire
row and column representing the variable being predicted.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # power of predicting 'status' using pairs of other variables prediction_power("status", df.att.ed)
# use internal data set data(lawdata) df.att <- lawdata[[4]] # three steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) # 3. remove variable 'senior' as it consists of only unique values (thus redundant) df.att.ed <- data.frame( status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # power of predicting 'status' using pairs of other variables prediction_power("status", df.att.ed)
Finds redundant variables in a dataframe consisting of discrete variables.
redundancy(dat, dec = 3)
redundancy(dat, dec = 3)
dat |
dataframe with rows as observations and columns as variables. Variables must all be observed or transformed categorical with finite range spaces. |
dec |
the precision given as number of decimals used to round bivariate entropies in order to find redundant variables (the more decimals, the harder to detect redundancy). Default is 3. |
Redundancy is defined as two variables holding the same information (bivariate entropies) as at least one of the variable alone (univariate entropies). Consider removing one of these two variable from the dataframe for further analysis.
Binary matrix indicating which row and column variables hold the same information.
Termeh Shafie
Frank, O., & Shafie, T. (2016). Multivariate entropy analysis of network data. Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique, 129(1), 45-63.
# use internal data set data(lawdata) df.att <- lawdata[[4]] # two steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) df.att.ed <- data.frame( senior = df.att$senior, status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # find redundant variables in dataframe redundancy(df.att.ed) # variable 'senior' should be omitted
# use internal data set data(lawdata) df.att <- lawdata[[4]] # two steps of data editing: # 1. categorize variables 'years' and 'age' based on # approximately three equally size groups (values based on cdf) # 2. make sure all outcomes start from the value 0 (optional) df.att.ed <- data.frame( senior = df.att$senior, status = df.att$status, gender = df.att$gender, office = df.att$office - 1, years = ifelse(df.att$years <= 3, 0, ifelse(df.att$years <= 13, 1, 2) ), age = ifelse(df.att$age <= 35, 0, ifelse(df.att$age <= 45, 1, 2) ), practice = df.att$practice, lawschool = df.att$lawschool - 1 ) # find redundant variables in dataframe redundancy(df.att.ed) # variable 'senior' should be omitted