Add lines on useful resources to answer to the question and first line on...

Add lines on useful resources to answer to the question and first line on describing the first step to perform.
parent b47d2baa
...@@ -2121,11 +2121,28 @@ ...@@ -2121,11 +2121,28 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "source": [
"Notes pour plus tard: lien stack overflow vers code de customisation de graphes de la bibliothèque python networkx\n", "Resources:\n",
"https://stackoverflow.com/questions/25639169/networkx-change-color-width-according-to-edge-attributes-inconsistent-result\n", "page officielle de la docuementation de networkx sur les types de graphes implémentés [lien](https://networkx.org/documentation/stable/reference/classes/index.html)\\\n",
"lien github vers morceau de code ajoutant de la couleur et le réglage de l'épaisseur des arêtes sur un graphe\n", "--> pour notre besoin, il nous faudra utiliser les graphes `MultiDiGraph`\n",
"https://gist.github.com/AruniRC/2c53fe7680eeb578593ec816bbfb1653\n" "\n",
"lien vers le tutorial de la bibliothqe networkx\\\n",
"[tutorial_networkx](https://networkx.org/documentation/stable/tutorial.html)\n",
"\n",
"lien stack overflow vers un code de customisation de graphes de la bibliothèque python networkx\\\n",
"[customisation_graphe](https://stackoverflow.com/questions/25639169/networkx-change-color-width-according-to-edge-attributes-inconsistent-result)\n",
"\n",
"lien github vers un morceau de code ajoutant de la couleur et le réglage de l'épaisseur des arêtes sur un graphe\\\n",
"[couleur_epaisseur_arêtes_graphe](https://gist.github.com/AruniRC/2c53fe7680eeb578593ec816bbfb1653)\n",
"\n",
"En première étape, il va nous falloir construire la matrice d'adjacence du graphe des échanges entre personnages afin d'instancier/créer l'objet graphe voulu de la bibliothèque networkx. La matrice d'adjacence sera un dataframe pandas."
] ]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
} }
], ],
"metadata": { "metadata": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment