makeDyadic function

A Function To Create Dyadic Data Sets

A Function To Create Dyadic Data Sets

This function allows the user to create dyadic data sets which can be directed or undirected.

makeDyadic(x, directed = FALSE, show.progress = 5)

Arguments

  • x: The data matrix whereas the first variable is the country code and the second column has to be the time variable.
  • directed: Logical. If directed=TRUE the dyadic data set will be directed and have variables with amended names (creating sen_varname for sender and rec_varname for receiver).
  • show.progress: Logical. The process may take some time depending on the size of the supplied data matrix. This option allows users to receive feedback of how far along the process is at periodical steps. Default is set to 5.

Details

This function was first written for Simon Collrad-Wexler and then later amended for Fabio Wasserfallen.

Returns

Returns a data frame with the dyadic data set.

Author(s)

Lucas Leemann lleemann@gmail.com

Examples

dataOrig <- matrix(c( rep(c(1:4),3), rep(1,4), rep(2,4), rep(3,4), rnorm(4,1.5,0.1), rnorm(4,2.5,0.1), rnorm(4,3.5,0.1), rnorm(4,4.5,0.1), rnorm(4,5.5,0.1), rnorm(4,6.5,0.1)),12,4) colnames(dataOrig) <- c("countryCODE", "Year", "Variable 1", "Variable 2") dataNew <- makeDyadic(dataOrig, directed=TRUE)
  • Maintainer: Lucas Leemann
  • License: GPL (>= 2)
  • Last published: 2025-03-24

Useful links