ориентированный граф с таблицей данных Python - PullRequest
0 голосов
/ 11 февраля 2019
I have a data frame like below: 
df=
Parent   Child
1087       4
1087       5
1087       25
1096       25
1096       26
1096       27
1096       4
1144       25
1144       26
1144       27

 I have tried this below code.. but not providing directed graph just giving graph which is not clear picture

    import pandas as pd
    import numpy as np
    import networkx as nx
    import matplotlib.pyplot as plt

    # Build a dataframe with 4 connections

    df = pd.DataFrame([[k, i] for k, v in data.items() for i in v], 
                           columns=['parent', 'child']) 
    # Build your graph
    G = nx.from_pandas_edgelist(df, 'parent', 'child')

    # Plot it
    nx.draw(G,pos=nx.spring_layout(G), with_labels=True)
    plt.show()

Я хотел бы преобразовать этот фрейм данных в ориентированный граф, где источник - родитель, а цель - ребенок.

Заранее спасибо ....

1 Ответ

0 голосов
/ 11 февраля 2019

Необходимо указать параметр create_using в from_pandas_edgelist :

G = nx.from_pandas_edgelist(df, 'parent', 'child', create_using=nx.DiGraph())

Тип G после - <class 'networkx.classes.digraph.DiGraph'>, а края:

(1144, 25)
(1144, 26)
(1144, 27)
(1096, 25)
(1096, 26)
(1096, 27)
(1096, 4)
(1087, 25)
(1087, 4)
(1087, 5)
...