Skip to content

Commit

Permalink
Change colors in diagram, address #1
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmacfarlane committed Jan 11, 2024
1 parent f741d0f commit a39d750
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions 03-methods.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ DiagrammeR::grViz("
'Mode Choice Logsums'; 'Destination Choice Logsums'; 'Trips'; 'Congested Network'
node [shape = box,
fontname = Helvetica, color = red]
'Time and Distance Costs'; 'Logsum Costs' [color=blue]
fontname = Helvetica, color = '#D14124']
'Time and Distance Costs'; 'Logsum Costs' [color='#0072CE']
node [shape = oval,
Expand All @@ -60,11 +60,11 @@ DiagrammeR::grViz("
'Mode Choice Logsums' -> 'Trips'
'Destination Choice Logsums' -> Trips
Trips -> 'Congested Network'
'Congested Network' -> 'Time and Distance Skim' [color = red, label = 'Feedback',fontname = Helvetica, fontcolor=red]
Trips -> 'Time and Distance Costs' [color = red]
'Time and Distance Skim' -> 'Time and Distance Costs' [color = red]
'Destination Choice Logsums' -> 'Logsum Costs' [color = blue]
'Trip Productions' -> 'Logsum Costs' [color = blue]
'Congested Network' -> 'Time and Distance Skim' [color = '#D14124', label = 'Feedback',fontname = Helvetica, fontcolor='#D14124']
Trips -> 'Time and Distance Costs' [color = '#D14124']
'Time and Distance Skim' -> 'Time and Distance Costs' [color = '#D14124']
'Destination Choice Logsums' -> 'Logsum Costs' [color = '#0072CE']
'Trip Productions' -> 'Logsum Costs' [color = '#0072CE']
}
")
```
Expand Down

0 comments on commit a39d750

Please sign in to comment.