Create a weighted, direct igraph graph object from M-Tool data. This most often will not be seen by the user as it is used internally at import.
Usage
igraph_from_mtools_el(
  edgelist,
  concepts,
  from_col = "From",
  to_col = "To",
  weight_col = "Weight"
)Arguments
- edgelist
 A raw edgelist necessarily containing a sender, receiver and weight column
- concepts
 character vector of unique concepts gathered in mental model
- from_col
 The name of the column to read sender nodes from. Defaults to MTool output "From"
- to_col
 The name of the column to read receiver nodes from. Defaults to MTool output "To"
- weight_col
 The name of the
