Skip to content

Instantly share code, notes, and snippets.

@jmcph4
Last active April 24, 2024 06:15
Show Gist options
  • Save jmcph4/dd01fabb81a4f8d26bbaddacfbd2654c to your computer and use it in GitHub Desktop.
Save jmcph4/dd01fabb81a4f8d26bbaddacfbd2654c to your computer and use it in GitHub Desktop.
digraph asset_graph {
node [shape = circle] "GBP" "USD" "JPY" ;
"GBP" -> "USD" [label = "1.25"];
"JPY" -> "GBP" [label = "0.01"];
"USD" -> "JPY" [label = "76.92307692307692"];
"USD" -> "GBP" [label = "0.8"];
"GBP" -> "JPY" [label = "100"];
"JPY" -> "USD" [label = "0.013"];
}
digraph asset_graph_log_prices {
node [shape = circle] "GBP" "USD" "JPY" ;
"GBP" -> "USD" [label = "-0.22314355131420976"];
"JPY" -> "GBP" [label = "4.605170185988091"];
"USD" -> "JPY" [label = "-4.3428059215206005"];
"USD" -> "GBP" [label = "0.2231435513142097"; color = "red"];
"GBP" -> "JPY" [label = "-4.605170185988092"; color = "red"];
"JPY" -> "USD" [label = "4.3428059215206005"; color = "red"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment