cores = graphviz.Digraph('cores', comment='Importación de Crudo en España (1968-2021)', engine='twopi',
format='png', filename='cores', directory='D:/',
node_attr={'shape': 'plain', 'fontsize': '10'},
edge_attr={'fontsize': '8', 'color': "lightgreen"},
graph_attr={'nodesep': "1", 'ranksep': "3", 'size': "10"})
cores.node('ESP', 'España', _attributes={'shape': 'box', 'fontsize': '16'})
for i, c in np.ndenumerate(df_0.Continente.unique()):
cores.node(str(i), c, _attributes={'shape': 'oval', 'fontsize': '16'})
cores.edge(str(i), 'ESP', str(int(df_0[df_0.Continente==c].Valor.sum())))
for j, p in np.ndenumerate(df_0[df_0.Continente==c].País):
cores.node(str(i*100+j), p)
cores.edge(str(i*100+j), str(i), str(int(df_0[df_0.País==p].Valor)))
cores