Applies parse_source() to a source, extract the produced network,
and shows it.
Arguments
- x
A loaded source (with
load_source()), the path to a loaded source, or an already parsed source (withparse_source()).
Examples
### Get path to example source
examplePath <-
system.file("extdata", package="rock");
### Read a souce coded with the Qualitative Network Approach
qnaExample <-
file.path(
examplePath,
"network-example-1.rock"
);
### Show the network
rock::qna(qnaExample);
