gpt4 book ai didi

python - 情节: Barplots embeded in scatterplot/network graph markers

转载 作者:太空宇宙 更新时间:2023-11-03 19:43:21 25 4
gpt4 key购买 nike

我正在尝试可视化贝叶斯网络,并希望叠加一个显示边际概率分布的简单条形图,而不是标记/节点。

例如

import dash
import dash_core_components as dcc
import dash_html_components as html
import plotly.graph_objs as go
import networkx as nx

G = nx.DiGraph([
('Rain', 'Grass_Wet'),
('Sprinkler', 'Grass_Wet'),
('Rain', 'Sprinkler')])

app = dash.Dash(__name__)

def generate_network_graph(G):
pos = nx.drawing.layout.spectral_layout(G)
# Add additional attribute specifying node position
label_col = 'label'
for node in G.nodes:
G.nodes[node]['pos'] = list(pos[node])
G.nodes[node][label_col] = node
# Define Figure
traceRecode = [] # contains edge_trace, node_trace, middle_node_trace

index = 0
for edge in G.edges:
x0, y0 = G.nodes[edge[0]]['pos']
x1, y1 = G.nodes[edge[1]]['pos']
#weight = float(G.edges[edge]['TransactionAmt']) / max(edge1['TransactionAmt']) * 10
trace = go.Scatter(x=tuple([x0, x1, None]), y=tuple([y0, y1, None]),
mode='lines')
traceRecode.append(trace)
index = index + 1

node_trace = go.Scatter(x=[], y=[], hovertext=[], text=[], mode='markers+text', textposition="bottom center", marker={'size': 20})

index = 0
for node in G.nodes():
x, y = G.nodes[node]['pos']
node_trace['x'] += tuple([x])
node_trace['y'] += tuple([y])
index = index + 1

traceRecode.append(node_trace)

figure = {
"data": traceRecode,
"layout": go.Layout(title='Bayesian Network', showlegend=False, hovermode='closest',
margin={'b': 40, 'l': 40, 'r': 40, 't': 40},
xaxis={'showgrid': False, 'zeroline': False, 'showticklabels': False},
yaxis={'showgrid': False, 'zeroline': False, 'showticklabels': False},
height=600

)}
return figure

def create_bar_plot():
figure = go.Figure(go.Bar(
x=[0.6, 0.4],
y=['Yes', 'No'],
orientation='h'))

return figure


app.layout = html.Div(
[
html.Div(
# className="six columns",
children=[dcc.Graph(id="my-graph", figure=generate_network_graph(G))],
),
html.Div(children=[dcc.Graph(id="my-graph2", figure=create_bar_plot())]),
]
)

if __name__ == '__main__':
app.run_server()

将生成第一个输出。

Now

但是我需要在每个节点嵌入或重叠条形图,显示该节点的边际概率分布。我希望能够从networkx获得网络方向,因为这对我的应用程序非常重要。网络非常大,不可能直接先验指定条形图位置。

Desiredoutput

最佳答案

Python 中没有创建节点嵌入式条形图的功能(替代方案 - manual.cytoscape.org/en/stable/Styles.html 请参阅教程 6:节点图)- 但可以使用破折号创建饼图-cytoscape如下图

将以下 block 添加到 Cytoscape 默认破折号样式表中将创建具有以下样式的节点

default_stylesheet = [{
"selector": "node",
"style": {
"background-color": "green",
"pie-size": "80%",
"pie-1-background-color": "#E8747C",
"pie-1-background-size": f"mapData(Yes, 0, 1, 0, 100)",
"pie-2-background-color": "#74CBE8",
"pie-2-background-size": f"mapData(No, 0, 1, 0, 100)",
}]

enter image description here

Dash-cytoscape 允许链接中给出的所有大多数 cytoscape js 样式选项,这可能足以满足您的特定用例

有用的链接:

https://js.cytoscape.org/demos/pie-style/ https://dash.plot.ly/cytoscape

关于python - 情节: Barplots embeded in scatterplot/network graph markers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60300084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com