Sankey Plot Node Positions are incorrect
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Python
- Sterne
- 18.8k
- Forks
- 2.8k
- Ø Merge
- 16 Std. 26 Min.
- Gemergte PRs (30 T.)
- 21
Beschreibung
Describe your context
- replace the result of
pip list | grep dashbelow
dash 1.5.1
dash-core-components 1.4.0
dash-html-components 1.0.1
dash-renderer 1.2.0
dash-table 4.5.0
Describe the bug
Want to position Nodes along X-Axis in a Sankey Plot and Y to be automatically Adjusted. When I define X Positions only Sankey doesn't align the Nodes. But If I define Y Positions then only Sankey aligns the Nodes.
def create_sankey_plot(self, source_r, target_r, value_r, colors_r,
labels_r, labels_a, colors_a):
return go.Sankey(
node=dict(
pad=15,
thickness=20,
line=dict(color="black", width=0.5),
label=labels_a,
color=colors_a,
x=[0.2, 0.1, 0.5, 0.7, 0.3, 0.5]
),
link=dict(
source=source_r,
target=target_r,
value=value_r,
color=colors_r,
line={'width': 1},
label=labels_r
)
)
Above code will not align Nodes. Below code works:
def create_sankey_plot(self, source_r, target_r, value_r, colors_r,
labels_r, labels_a, colors_a):
return go.Sankey(
node=dict(
pad=15,
thickness=20,
line=dict(color="black", width=0.5),
label=labels_a,
color=colors_a,
x=[0.2, 0.1, 0.5, 0.7, 0.3, 0.5],
y=[0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
),
link=dict(
source=source_r,
target=target_r,
value=value_r,
color=colors_r,
line={'width': 1},
label=labels_r
)
)
Expected behavior
Align Nodes if provided only X values / Y values making other default.
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne damit, den gemeldeten go.Sankey-Fall nur mit node.x-Werten zu reproduzieren, und vergleiche ihn dann mit dem Beispiel, das auch node.y-Werte angibt. Untersuche die von der Python API bereitgestellte Handhabung der Sankey-Knotenpositionen und verifiziere, dass die Angabe nur einer Koordinate die Knoten weiterhin ausrichtet, während die andere automatisch angepasst wird.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- python
- Bereich
- data-visualization
- Issue-Typ
- Bug
- Schwierigkeit
- 4/5
- Geschätzter Aufwand
- 3-5 Tage
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 35/100