Skip to content

Commit 4fd8834

Browse files
committed
Remove scaling: taken care of internally.
1 parent f330ca4 commit 4fd8834

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/paper_example01.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Ni = find_node(g, 5, 5); # center
1818
param[:Zjn][Ni, :] .= 1; # more productive node
1919

2020
# Plot the mesh with population
21-
plot_graph(g, edges = false, mesh = true, node_sizes = param[:Lj], node_sizes_scale = 2500)
21+
plot_graph(g, edges = false, mesh = true, node_sizes = param[:Lj])
2222

2323
# Plot the mesh with productivity
24-
plot_graph(g, edges = false, mesh = true, node_sizes = param[:Zjn], node_sizes_scale = 200)
24+
plot_graph(g, edges = false, mesh = true, node_sizes = param[:Zjn])
2525

2626
# Compute networks
2727
results = []

0 commit comments

Comments
 (0)