{ "cells": [ { "cell_type": "markdown", "id": "0", "metadata": {}, "source": [ "# Algotel / Cores" ] }, { "cell_type": "markdown", "id": "1", "metadata": {}, "source": [ "[Algotel](https://algotel.eu.org/) is a French-speaking conference on algorithms and telecommunications.\n", "[CoRes](https://algotel-cores25.sciencesconf.org/resource/page/id/6) is a French-speaking conference on networks and services.\n", "They regularly hold joint editions.\n", "\n", "The `cotel` module (**CO**res / algo**TEL**) maps the program committees of their joint editions,\n", "categorizing members into \"Algotel\" or \"Cores\" groups." ] }, { "cell_type": "markdown", "id": "2", "metadata": {}, "source": [ "The `cotels` dictionary provides access to all covered editions." ] }, { "cell_type": "code", "execution_count": null, "id": "3", "metadata": {}, "outputs": [], "source": [ "from gismap.lab_examples.cotel import cotels\n", "sorted(cotels)" ] }, { "cell_type": "code", "execution_count": null, "id": "4", "metadata": {}, "outputs": [], "source": [ "from gismap.utils.logger import logger\n", "import logging\n", "logger.setLevel(logging.ERROR)" ] }, { "cell_type": "markdown", "id": "5", "metadata": {}, "source": [ "## 2026 edition" ] }, { "cell_type": "code", "execution_count": null, "id": "6", "metadata": {}, "outputs": [], "source": [ "groups = {\"Algotel\": {\"color\": \"rgb(0, 119, 179)\"}, \"Cores\": {\"color\": \"rgb(198, 12, 48)\"}, \"moon\": {\"display\": \"Copains\"}}\n", "cotel = cotels[2026]()\n", "cotel.update_authors()\n", "cotel.update_publis()\n", "cotel.expand()\n", "cotel.show_html(groups=groups)" ] }, { "cell_type": "markdown", "id": "7", "metadata": {}, "source": [ "The `expand` method adds external collaborators (displayed as \"moons\" around their main collaborators),\n", "which allows spotting further links between the Algotel and Cores communities." ] }, { "cell_type": "markdown", "id": "8", "metadata": {}, "source": [ "## 2016 edition" ] }, { "cell_type": "code", "execution_count": null, "id": "9", "metadata": {}, "outputs": [], "source": [ "cotel = cotels[2016]()\n", "cotel.update_authors()\n", "cotel.update_publis()\n", "cotel.expand()\n", "cotel.show_html(groups=groups)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.8" } }, "nbformat": 4, "nbformat_minor": 5 }