Update dashboard.py
Browse files- dashboard.py +1 -1
dashboard.py
CHANGED
@@ -199,7 +199,7 @@ def plot_chord(df,min_value):
|
|
199 |
nodes = hv.Dataset(filtered_df, 'index')
|
200 |
nodes.data.head()
|
201 |
chord = hv.Chord(filtered_df, ['source', 'target'], ['value'])
|
202 |
-
return chord.opts(opts.Chord(cmap='Category20', edge_cmap='Category20', label_text_color="white", node_color = hv.dim('index').str(), edge_color = hv.dim('source').str(), labels = 'index',
|
203 |
|
204 |
|
205 |
def chordify_triples(rel_grouping, min_val):
|
|
|
199 |
nodes = hv.Dataset(filtered_df, 'index')
|
200 |
nodes.data.head()
|
201 |
chord = hv.Chord(filtered_df, ['source', 'target'], ['value'])
|
202 |
+
return chord.opts(opts.Chord(cmap='Category20', edge_cmap='Category20', label_text_color="white", node_color = hv.dim('index').str(), edge_color = hv.dim('source').str(), labels = 'index', label_text_font_size="12pt", width=800, height=800))
|
203 |
|
204 |
|
205 |
def chordify_triples(rel_grouping, min_val):
|