prepare_mat | R Documentation |
From a long format matrix to a a wide format matrix.
prepare_mat(x, i, j, fij)
x |
A data.frame of flows between origins and destinations: long format matrix (origins, destinations, flows intensity). |
i |
A character giving the origin field name in mat. |
j |
A character giving the destination field name in mat. |
fij |
A character giving the flow field name in mat. |
A square matrix of flows. Diagonal can be filled or empty depending on data used.
# Import data
nav <- read.csv(system.file("csv/nav.csv", package = "flows"))
# Prepare data
myflows <- prepare_mat(x = nav, i = "i", j = "j", fij = "fij")
myflows[1:5, 1:5]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.