diff --git a/doc_network/bso.md b/doc_network/bso.md index c5d090b1..c22f1efa 100644 --- a/doc_network/bso.md +++ b/doc_network/bso.md @@ -2,15 +2,16 @@ title: 'Mapping scientific communities at scale' author: - Victor Barbier: - institute: mesr + institute: inria - Eric Jeangirard: institute: mesr orcid: 0000-0002-3767-7125 idref: 242241344 - institute: - mesr: name: 'French Ministry of Higher Education and Research, Paris, France' + - inria: + name: 'National Institute for Research in Digital Science and Technology, INRIA, Paris, France' bibliography: bso.bib date: January 2025 keywords: @@ -38,8 +39,8 @@ Analysing and mapping scientific communities provides an insight into the struct These maps are generally deduced from data in bibliographic databases (open or proprietary), based on co-publication or citation information. In the case of co-publications, two entities (authors, for example) will be linked if they have collaborated (co-published) on a piece of research. These links are then symmetrical. In the case of citation links, two authors will be linked if one cites the research work of another, in the list of references. This is a directed link, as one author may cite another without this being reciprocal. A lot of recent work uses this second approach, for example by trying to calculate composite indicators of novelty (or innovation) based on citation links. -The quality and completeness of the bibliographic metadata used are, of course, essential if we are to produce a relevant map. Today, the quality of open citation data still needs to be improved, cf [@alperin2024analysissuitabilityopenalexbibliometric]. -On the other hand, it is possible to obtain quality metadata on publications (and therefore links to co-publications). For example, the French Open Science Monitor (BSO) has compiled a corpus of French publications with good coverage cf [@10.1162/qss_a_00179]. This corpus is exposed in the French research portal scanR [@jeangirard:hal-04813230]. This is a corpus containing about 4 millions publications in all disciplines. These publications have been enriched with disambuation persistent identifier (PID) on authors, affiliations and topics. +The quality and completeness of the bibliographic metadata used are, of course, essential if we are to produce a relevant map. Today, the quality of open citation data still needs to be improved [@alperin2024analysissuitabilityopenalexbibliometric]. +On the other hand, it is possible to obtain quality metadata on publications (and therefore links to co-publications). For example, the French Open Science Monitor (BSO) has compiled a corpus of French publications with good coverage cf [@10.1162/qss_a_00179]. This corpus is exposed in the French research portal scanR [@jeangirard:hal-04813230]. This is a corpus containing about 4 millions publications in all disciplines. These publications have been enriched with disambiguation persistent identifier (PID) on authors, affiliations and topics. ## 1.1 Previous limits of the scanR application @@ -57,7 +58,9 @@ We propose a method for overcoming the limitations set out above. We also use a ## 2.1 Focusing on strongest interactions -One of the added values of mapping with a network view is to show the interactions between entities, i.e. the links between the nodes in the graph. These links provide crucial information that can be used to structure communities. If the size of the network needs to be reduced (for reasons of computation, speed, legibility and interpretability), it is vital to preserve the links that carry the most information, i.e. the strongest interactions. With this reasoning, it seems logical to reduce the size of the network by only affecting the strongest links. +One of the added values of mapping with a network view is to show the interactions between entities, i.e. the links between the nodes in the graph. These links provide crucial information that can be used to structure communities. Here If the size of the network needs to be reduced (for reasons of computation, speed, legibility and interpretability), it is vital to preserve the links that carry the most information, i.e. the strongest interactions. With this reasoning, it seems logical to reduce the size of the network by only affecting the strongest links. + +Here, we assume that there are no large isolated nodes (with no connection). An entity with no connection will not appear in the mapping. This assumption can sometimes prove to be false, particularly in the case of authors in literature, for example. Thus, from a given corpus, however large, we seek to extract the pairs of entities with the strongest interactions, for example the most co-signatures per pair of authors. From this list of pairs, we can naturally find the nodes of the graph and deduce a new graph. If the graph has several independent components, i.e. several unconnected sub-graphs, we can decide to keep only the main component(s). @@ -67,7 +70,7 @@ Each publication in the scanR corpus goes through a systematic enrichment pipeli For authors, the French-specific persistent identifier (PID) [https://www.idref.fr](https://www.idref.fr) is used. Its coverage, even if not perfect, for French affiliated authors is strong thanks to the deep linking between idref and the PhD thesis registration in France. Specific heuristics have been implemented to disambiguate names and link them to idref. -For affiliations, again French specific PID are used, especially SIRENE and RNSR. A specific module based on Elasticsearch [https://github.com/dataesr/affiliation-matcher](https://github.com/dataesr/affiliation-matcher) has been implemented to automatically link pblications to those PIDs [@lhote_using_2021]. +For affiliations, again French specific PID are used, especially [https://sirene.fr](https://sirene.fr) and [http://rnsr.fr](http://rnsr.fr). SIRENE is a national (French) PID for public and private institutions. RNSR is a French PID for the research structures like laboratories. A specific module based on Elasticsearch [https://github.com/dataesr/affiliation-matcher](https://github.com/dataesr/affiliation-matcher) has been implemented to automatically link pblications to those PIDs [@lhote_using_2021]. For topics, wikidata identifiers has been used using the entity-fishing module [https://github.com/kermitt2/entity-fishing](https://github.com/kermitt2/entity-fishing) cf [@foppiano2020entity]. @@ -124,7 +127,7 @@ To ensure that the network remains manageable and focuses on the most interestin In graph theory, a component refers to a subgraph in which any two nodes are connected to each other by paths, and which is connected to no additional nodes in the larger graph. Using Graphology, we filter the network components by iteratively removing the smallest components until the number of nodes falls below the threshold or only one component remains. This largest component is then subjected to further filtering if it still exceeds the node threshold. In this second filtering step, we utilize the betweenness centrality metric to retain the best-connected nodes. Betweenness centrality measures the extent to which a node lies on the shortest path between other nodes, thereby identifying nodes that act as bridges within the network. -Once the filtering process is complete, we apply a spatialization algorithm to position the nodes in a 2D space. For this purpose, we use the ForceAtlas2 algorithm, which is designed to produce aesthetically pleasing and informative layouts by simulating a physical system where nodes repel each other and edges act as springs pulling connected nodes together. This results in a clear and intuitive visual representation of the network [@10.1371/journal.pone.0098679]. +Once the filtering process is complete, we apply a spatialization algorithm to position the nodes in a 2D space. For this purpose, we use the ForceAtlas2 algorithm, which is designed to produce informative and aesthetically pleasing layouts by simulating a physical system where nodes repel each other and edges act as springs pulling connected nodes together. This results in a clear and intuitive visual representation of the network [@10.1371/journal.pone.0098679]. Thanks to Graphology, the settings of the ForceAtlas2 algorithm are automatically infered from our network order (number of nodes) as below: ``` barnesHutOptimize: order > 2000, @@ -199,7 +202,7 @@ We use citations data from OpenAlex, which is as of today one of the best open s ## 3.2 Custom perimeter -scanR offers this mapping tool for the entire indexed corpus, but it is also possible to adapt the tool to a restricted perimeter, at the user's discretion. For example, an institution or laboratory can define its own corpus (based on a list of publications) and a mapping tool dedicated to this perimeter is automatically created. Technically, elasticsearch queries are the same, with just an additional filter to query only the publications within the perimeter. The tool can be embedded in any website using an iframe. It's the same principle as the local barometer. This approach eliminates the need for automatic alignment of affiliations, which remains a highly complex task. Automation is possible to a certain extent [@lhote_using_2021], but human curation remains necessary in the majority of cases [@jeangirard:hal-04598201]. In this way, users retain control over the definition of their perimeter, and can, if they wish, have several distinct perimeters. +scanR offers this mapping tool for the entire indexed corpus, but it is also possible to adapt the tool to a restricted perimeter, at the user's discretion. For example, an institution or laboratory can define its own corpus (based on a list of publications) and a mapping tool dedicated to this perimeter is automatically created. Technically, elasticsearch queries are the same, with just an additional filter to query only the publications within the perimeter. The tool can be embedded in any website using an iframe. It's the same principle as the local Open Science Monitor: any French institution can benefit from the whole infrastructure already inplace and get a custom tool based on the same data, treatments and technologic stack as the national tool. This approach eliminates the need for automatic alignment of affiliations, which remains a highly complex task. Automation is possible to a certain extent [@lhote_using_2021], but human curation remains necessary in the majority of cases [@jeangirard:hal-04598201]. In this way, users retain control over the definition of their perimeter, and can, if they wish, have several distinct perimeters. # 4. Code availibility diff --git a/doc_network/mapping_at_scale.pdf b/doc_network/mapping_at_scale.pdf index 44404eb3..6f34f226 100644 Binary files a/doc_network/mapping_at_scale.pdf and b/doc_network/mapping_at_scale.pdf differ diff --git a/doc_network/mapping_at_scale.tex b/doc_network/mapping_at_scale.tex index d4bd4b97..ff4b3db0 100644 --- a/doc_network/mapping_at_scale.tex +++ b/doc_network/mapping_at_scale.tex @@ -131,7 +131,7 @@ \title{Mapping scientific communities at scale} \usepackage{authblk} \author[% - 1% + 2% ]{% Victor Barbier% % @@ -146,6 +146,8 @@ } \affil[1]{French Ministry of Higher Education and Research, Paris, France} +\affil[2]{National Institute for Research in Digital Science and +Technology, INRIA, Paris, France} \date{January 2025} \makeatletter @@ -223,14 +225,14 @@ \section{1. Motivation}\label{motivation}} The quality and completeness of the bibliographic metadata used are, of course, essential if we are to produce a relevant map. Today, the -quality of open citation data still needs to be improved, cf (Alperin et -al. 2024). On the other hand, it is possible to obtain quality metadata -on publications (and therefore links to co-publications). For example, -the French Open Science Monitor (BSO) has compiled a corpus of French +quality of open citation data still needs to be improved (Alperin et al. +2024). On the other hand, it is possible to obtain quality metadata on +publications (and therefore links to co-publications). For example, the +French Open Science Monitor (BSO) has compiled a corpus of French publications with good coverage cf (Chaignon and Egret 2022). This corpus is exposed in the French research portal scanR (Jeangirard 2024). This is a corpus containing about 4 millions publications in all -disciplines. These publications have been enriched with disambuation +disciplines. These publications have been enriched with disambiguation persistent identifier (PID) on authors, affiliations and topics. \hypertarget{previous-limits-of-the-scanr-application}{% @@ -301,11 +303,17 @@ \subsection{2.1 Focusing on strongest One of the added values of mapping with a network view is to show the interactions between entities, i.e.~the links between the nodes in the graph. These links provide crucial information that can be used to -structure communities. If the size of the network needs to be reduced -(for reasons of computation, speed, legibility and interpretability), it -is vital to preserve the links that carry the most information, i.e.~the -strongest interactions. With this reasoning, it seems logical to reduce -the size of the network by only affecting the strongest links. +structure communities. Here If the size of the network needs to be +reduced (for reasons of computation, speed, legibility and +interpretability), it is vital to preserve the links that carry the most +information, i.e.~the strongest interactions. With this reasoning, it +seems logical to reduce the size of the network by only affecting the +strongest links. + +Here, we assume that there are no large isolated nodes (with no +connection). An entity with no connection will not appear in the +mapping. This assumption can sometimes prove to be false, particularly +in the case of authors in literature, for example. Thus, from a given corpus, however large, we seek to extract the pairs of entities with the strongest interactions, for example the most @@ -329,11 +337,13 @@ \subsection{2.2 Publication metadata enrichment to produce different heuristics have been implemented to disambiguate names and link them to idref. -For affiliations, again French specific PID are used, especially SIRENE -and RNSR. A specific module based on Elasticsearch -\url{https://github.com/dataesr/affiliation-matcher} has been -implemented to automatically link pblications to those PIDs (L'Hôte and -Jeangirard 2021). +For affiliations, again French specific PID are used, especially +\url{https://sirene.fr} and \url{http://rnsr.fr}. SIRENE is a national +(French) PID for public and private institutions. RNSR is a French PID +for the research structures like laboratories. A specific module based +on Elasticsearch \url{https://github.com/dataesr/affiliation-matcher} +has been implemented to automatically link pblications to those PIDs +(L'Hôte and Jeangirard 2021). For topics, wikidata identifiers has been used using the entity-fishing module \url{https://github.com/kermitt2/entity-fishing} cf (Foppiano and @@ -435,8 +445,8 @@ \subsection{2.4 Network creation}\label{network-creation}} Once the filtering process is complete, we apply a spatialization algorithm to position the nodes in a 2D space. For this purpose, we use -the ForceAtlas2 algorithm, which is designed to produce aesthetically -pleasing and informative layouts by simulating a physical system where +the ForceAtlas2 algorithm, which is designed to produce informative and +aesthetically pleasing layouts by simulating a physical system where nodes repel each other and edges act as springs pulling connected nodes together. This results in a clear and intuitive visual representation of the network (Jacomy 2014).\\ @@ -590,14 +600,16 @@ \subsection{3.2 Custom perimeter}\label{custom-perimeter}} this perimeter is automatically created. Technically, elasticsearch queries are the same, with just an additional filter to query only the publications within the perimeter. The tool can be embedded in any -website using an iframe. It's the same principle as the local barometer. -This approach eliminates the need for automatic alignment of -affiliations, which remains a highly complex task. Automation is -possible to a certain extent (L'Hôte and Jeangirard 2021), but human -curation remains necessary in the majority of cases (Jeangirard, Bracco, -and L'Hôte 2024). In this way, users retain control over the definition -of their perimeter, and can, if they wish, have several distinct -perimeters. +website using an iframe. It's the same principle as the local Open +Science Monitor: any French institution can benefit from the whole +infrastructure already inplace and get a custom tool based on the same +data, treatments and technologic stack as the national tool. This +approach eliminates the need for automatic alignment of affiliations, +which remains a highly complex task. Automation is possible to a certain +extent (L'Hôte and Jeangirard 2021), but human curation remains +necessary in the majority of cases (Jeangirard, Bracco, and L'Hôte +2024). In this way, users retain control over the definition of their +perimeter, and can, if they wish, have several distinct perimeters. \hypertarget{code-availibility}{% \section{4. Code availibility}\label{code-availibility}} diff --git a/doc_network/out.docx b/doc_network/out.docx index 458f5778..1918c552 100644 Binary files a/doc_network/out.docx and b/doc_network/out.docx differ diff --git a/doc_network/out.enriched.json b/doc_network/out.enriched.json index 13a39edd..1c226e20 100644 --- a/doc_network/out.enriched.json +++ b/doc_network/out.enriched.json @@ -1 +1 @@ -{"blocks":[{"t":"Para","c":[{"t":"Strong","c":[{"t":"Str","c":"Keywords"}]},{"t":"Str","c":":"},{"t":"Space"},{"t":"Str","c":"scanR,"},{"t":"Space"},{"t":"Str","c":"VOSviewer,"},{"t":"Space"},{"t":"Str","c":"graphology,"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"community,"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"detection,"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal,"},{"t":"Space"},{"t":"Str","c":"Elasticsearch,"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"}]},{"t":"Header","c":[1,["motivation",[],[]],[{"t":"Str","c":"1."},{"t":"Space"},{"t":"Str","c":"Motivation"}]]},{"t":"Para","c":[{"t":"Str","c":"Analysing"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"provides"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"insight"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"evolution"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"academic"},{"t":"Space"},{"t":"Str","c":"disciplines."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"involves"},{"t":"Space"},{"t":"Str","c":"providing"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"analytical"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"visual"},{"t":"Space"},{"t":"Str","c":"representation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relationships"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"(e.g. researchers,"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"laboratories,"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"themes),"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"aim,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"particular,"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"understanding"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"networks"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"dynamics"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"collaboration,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"identifying"},{"t":"Space"},{"t":"Str","c":"collaborative"},{"t":"Space"},{"t":"Str","c":"groups"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"influences."},{"t":"Space"},{"t":"Str","c":"From"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"point"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"decision-makers,"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"type"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"useful"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"strategic"},{"t":"Space"},{"t":"Str","c":"decision-making"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"public"},{"t":"Space"},{"t":"Str","c":"policy"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"funding."}]},{"t":"Para","c":[{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"maps"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"generally"},{"t":"Space"},{"t":"Str","c":"deduced"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"bibliographic"},{"t":"Space"},{"t":"Str","c":"databases"},{"t":"Space"},{"t":"Str","c":"(open"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"proprietary),"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"co-publication"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"information."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"case"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"co-publications,"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"(authors,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example)"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"collaborated"},{"t":"Space"},{"t":"Str","c":"(co-published)"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"piece"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"then"},{"t":"Space"},{"t":"Str","c":"symmetrical."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"case"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"cites"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"work"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"another,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"references."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"directed"},{"t":"Space"},{"t":"Str","c":"link,"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"author"},{"t":"Space"},{"t":"Str","c":"may"},{"t":"Space"},{"t":"Str","c":"cite"},{"t":"Space"},{"t":"Str","c":"another"},{"t":"Space"},{"t":"Str","c":"without"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"reciprocal."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"lot"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"recent"},{"t":"Space"},{"t":"Str","c":"work"},{"t":"Space"},{"t":"Str","c":"uses"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"second"},{"t":"Space"},{"t":"Str","c":"approach,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"trying"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"calculate"},{"t":"Space"},{"t":"Str","c":"composite"},{"t":"Space"},{"t":"Str","c":"indicators"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"novelty"},{"t":"Space"},{"t":"Str","c":"(or"},{"t":"Space"},{"t":"Str","c":"innovation)"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"links."}]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"quality"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"completeness"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"bibliographic"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"are,"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"course,"},{"t":"Space"},{"t":"Str","c":"essential"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"produce"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"relevant"},{"t":"Space"},{"t":"Str","c":"map."},{"t":"Space"},{"t":"Str","c":"Today,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"quality"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"still"},{"t":"Space"},{"t":"Str","c":"needs"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"improved,"},{"t":"Space"},{"t":"Str","c":"cf"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"alperin2024analysissuitabilityopenalexbibliometric","citationHash":0}],[{"t":"Str","c":"[@alperin2024analysissuitabilityopenalexbibliometric]"}]]},{"t":"Str","c":"."},{"t":"SoftBreak"},{"t":"Str","c":"On"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"hand,"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"possible"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"obtain"},{"t":"Space"},{"t":"Str","c":"quality"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"(and"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"co-publications)."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"example,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"Open"},{"t":"Space"},{"t":"Str","c":"Science"},{"t":"Space"},{"t":"Str","c":"Monitor"},{"t":"Space"},{"t":"Str","c":"(BSO)"},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"compiled"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"good"},{"t":"Space"},{"t":"Str","c":"coverage"},{"t":"Space"},{"t":"Str","c":"cf"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"10.1162/qss_a_00179","citationHash":0}],[{"t":"Str","c":"[@10.1162/qss_a_00179]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"exposed"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"jeangirard:hal-04813230","citationHash":0}],[{"t":"Str","c":"[@jeangirard:hal-04813230]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"containing"},{"t":"Space"},{"t":"Str","c":"about"},{"t":"Space"},{"t":"Str","c":"4"},{"t":"Space"},{"t":"Str","c":"millions"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"all"},{"t":"Space"},{"t":"Str","c":"disciplines."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"enriched"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"disambuation"},{"t":"Space"},{"t":"Str","c":"persistent"},{"t":"Space"},{"t":"Str","c":"identifier"},{"t":"Space"},{"t":"Str","c":"(PID)"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"affiliations"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"topics."}]},{"t":"Header","c":[2,["previous-limits-of-the-scanr-application",[],[]],[{"t":"Str","c":"1.1"},{"t":"Space"},{"t":"Str","c":"Previous"},{"t":"Space"},{"t":"Str","c":"limits"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"application"}]]},{"t":"Para","c":[{"t":"Str","c":"Launched"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"2016,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"portal"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"search"},{"t":"Space"},{"t":"Str","c":"engine."},{"t":"Space"},{"t":"Str","c":"Its"},{"t":"Space"},{"t":"Str","c":"scope"},{"t":"Space"},{"t":"Str","c":"first"},{"t":"Space"},{"t":"Str","c":"focused"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"(institutions,"},{"t":"Space"},{"t":"Str","c":"laboratories"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"private"},{"t":"Space"},{"t":"Str","c":"companies)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"was"},{"t":"Space"},{"t":"Str","c":"extended"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"2020"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"cover"},{"t":"Space"},{"t":"Str","c":"fundings,"},{"t":"Space"},{"t":"Str","c":"publications,"},{"t":"Space"},{"t":"Str","c":"patents"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"Two"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"cases"},{"t":"Space"},{"t":"Str","c":"were"},{"t":"Space"},{"t":"Str","c":"covered."},{"t":"Space"},{"t":"Str","c":"Firstly,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ability"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"generate"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"search"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"corresponding"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"user"},{"t":"Space"},{"t":"Str","c":"query."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"laboratories,"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"funding"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"could"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"generated."},{"t":"Space"},{"t":"Str","c":"Secondly,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"(or"},{"t":"Space"},{"t":"Str","c":"laboratory),"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"unified"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"all"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"concerning"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"was"},{"t":"Space"},{"t":"Str","c":"grouped"},{"t":"Space"},{"t":"Str","c":"together"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"dedicated"},{"t":"Space"},{"t":"Str","c":"page"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"(administrative"},{"t":"Space"},{"t":"Str","c":"information,"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications,"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"funding,"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"partners,"},{"t":"Space"},{"t":"Str","c":"etc.)."}]},{"t":"Para","c":[{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"functions"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"gave"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"flat"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"dimensions,"},{"t":"Space"},{"t":"Str","c":"without"},{"t":"Space"},{"t":"Str","c":"providing"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"insights"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"laboratories"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"user"},{"t":"Space"},{"t":"Str","c":"interested"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"theme,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"contributors"},{"t":"Space"},{"t":"Str","c":"(those"},{"t":"Space"},{"t":"Str","c":"who"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"co-authored"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"publications)"},{"t":"Space"},{"t":"Str","c":"does"},{"t":"Space"},{"t":"Str","c":"not"},{"t":"Space"},{"t":"Str","c":"give"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"clear"},{"t":"Space"},{"t":"Str","c":"idea"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"work"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"how"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"interact"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"describe"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"attempt"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"detect"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"could"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"enable"},{"t":"Space"},{"t":"Str","c":"us"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"go"},{"t":"Space"},{"t":"Str","c":"further"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"creating"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"explore"},{"t":"Space"},{"t":"Str","c":"fields"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"innovation."}]},{"t":"Header","c":[2,["network-analysis-limits",[],[]],[{"t":"Str","c":"1.2"},{"t":"Space"},{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"limits"}]]},{"t":"Para","c":[{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"bibliographic"},{"t":"Space"},{"t":"Str","c":"studies"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relationships"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"corpus."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"general,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"limited"},{"t":"Space"},{"t":"Str","c":"because"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"calculations"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"determine"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"positions"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"networks"},{"t":"Space"},{"t":"Str","c":"require"},{"t":"Space"},{"t":"Str","c":"too"},{"t":"Space"},{"t":"Str","c":"many"},{"t":"Space"},{"t":"Str","c":"resources,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"addition"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"difficult"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"interpret."},{"t":"Space"},{"t":"Str","c":"As"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"result,"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"such"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"offer"},{"t":"Space"},{"t":"Str","c":"options"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"limiting"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"networks."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"first"},{"t":"Space"},{"t":"Str","c":"option"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"too"},{"t":"Space"},{"t":"Str","c":"many"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"particularly"},{"t":"Space"},{"t":"Str","c":"true"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"particle"},{"t":"Space"},{"t":"Str","c":"physics,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"thousand"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"As"},{"t":"Space"},{"t":"Str","c":"well"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"generating"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"networks,"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"hyperauthorship"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"seen"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"reducing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relevance"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"information"},{"t":"Space"},{"t":"Str","c":"conveyed"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"co-authorship"},{"t":"Space"},{"t":"Str","c":"links."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"second"},{"t":"Space"},{"t":"Str","c":"option"},{"t":"Space"},{"t":"Str","c":"offered"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"thresholds"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"limit"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"directly"},{"t":"Space"},{"t":"Str","c":"(minimum"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"minimum"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"node)."},{"t":"Space"},{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"approach"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"retaining"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"largest"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"obstacle"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"scaling"},{"t":"Space"},{"t":"Str","c":"up"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"corpora"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"million"},{"t":"Space"},{"t":"Str","c":"documents."},{"t":"Space"},{"t":"Str","c":"Indeed,"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"wish"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"concentrate"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"few"},{"t":"Space"},{"t":"Str","c":"hundred"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"high"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"resulting"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"risks"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"just"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"constellation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"single"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"them,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"fact"},{"t":"Space"},{"t":"Str","c":"made"},{"t":"Space"},{"t":"Str","c":"insignificant"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"terms"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"(or"},{"t":"Space"},{"t":"Str","c":"citations)"},{"t":"Space"},{"t":"Str","c":"per"},{"t":"Space"},{"t":"Str","c":"node."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"addition,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"processing"},{"t":"Space"},{"t":"Str","c":"time"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"long,"},{"t":"Space"},{"t":"Str","c":"making"},{"t":"Space"},{"t":"Str","c":"such"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"unusable"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"web"},{"t":"Space"},{"t":"Str","c":"application"},{"t":"Space"},{"t":"Str","c":"where"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user"},{"t":"Space"},{"t":"Str","c":"expects"},{"t":"Space"},{"t":"Str","c":"rapid"},{"t":"Space"},{"t":"Str","c":"interaction"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"application."}]},{"t":"Header","c":[1,["network-analysis-at-scale",[],[]],[{"t":"Str","c":"2."},{"t":"Space"},{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale"}]]},{"t":"Para","c":[{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"propose"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"method"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"overcoming"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"limitations"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"out"},{"t":"Space"},{"t":"Str","c":"above."},{"t":"Space"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"technique"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"reduce"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"dual"},{"t":"Space"},{"t":"Str","c":"approach:"},{"t":"Space"},{"t":"Str","c":"instead"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"links."}]},{"t":"Header","c":[2,["focusing-on-strongest-interactions",[],[]],[{"t":"Str","c":"2.1"},{"t":"Space"},{"t":"Str","c":"Focusing"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions"}]]},{"t":"Para","c":[{"t":"Str","c":"One"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"added"},{"t":"Space"},{"t":"Str","c":"values"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"show"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities,"},{"t":"Space"},{"t":"Str","c":"i.e. the"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"provide"},{"t":"Space"},{"t":"Str","c":"crucial"},{"t":"Space"},{"t":"Str","c":"information"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"communities."},{"t":"Space"},{"t":"Str","c":"If"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"needs"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"reduced"},{"t":"Space"},{"t":"Str","c":"(for"},{"t":"Space"},{"t":"Str","c":"reasons"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"computation,"},{"t":"Space"},{"t":"Str","c":"speed,"},{"t":"Space"},{"t":"Str","c":"legibility"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interpretability),"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"vital"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"preserve"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"carry"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"information,"},{"t":"Space"},{"t":"Str","c":"i.e. the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions."},{"t":"Space"},{"t":"Str","c":"With"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"reasoning,"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"seems"},{"t":"Space"},{"t":"Str","c":"logical"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"reduce"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"affecting"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"links."}]},{"t":"Para","c":[{"t":"Str","c":"Thus,"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"given"},{"t":"Space"},{"t":"Str","c":"corpus,"},{"t":"Space"},{"t":"Str","c":"however"},{"t":"Space"},{"t":"Str","c":"large,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"seek"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"extract"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"pairs"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"co-signatures"},{"t":"Space"},{"t":"Str","c":"per"},{"t":"Space"},{"t":"Str","c":"pair"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"From"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"pairs,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"naturally"},{"t":"Space"},{"t":"Str","c":"find"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"deduce"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"new"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"If"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"independent"},{"t":"Space"},{"t":"Str","c":"components,"},{"t":"Space"},{"t":"Str","c":"i.e. several"},{"t":"Space"},{"t":"Str","c":"unconnected"},{"t":"Space"},{"t":"Str","c":"sub-graphs,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"decide"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"keep"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"component(s)."}]},{"t":"Header","c":[2,["publication-metadata-enrichment-to-produce-different-mapping",[],[]],[{"t":"Str","c":"2.2"},{"t":"Space"},{"t":"Str","c":"Publication"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"enrichment"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"produce"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"mapping"}]]},{"t":"Para","c":[{"t":"Str","c":"Each"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"goes"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"systematic"},{"t":"Space"},{"t":"Str","c":"enrichment"},{"t":"Space"},{"t":"Str","c":"pipeline,"},{"t":"Space"},{"t":"Str","c":"including"},{"t":"Space"},{"t":"Str","c":"author"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"affiliation"},{"t":"Space"},{"t":"Str","c":"disambiguation,"},{"t":"Space"},{"t":"Str","c":"full-text"},{"t":"Space"},{"t":"Str","c":"parsing,"},{"t":"Space"},{"t":"Str","c":"topic"},{"t":"Space"},{"t":"Str","c":"detection."}]},{"t":"Para","c":[{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French-specific"},{"t":"Space"},{"t":"Str","c":"persistent"},{"t":"Space"},{"t":"Str","c":"identifier"},{"t":"Space"},{"t":"Str","c":"(PID)"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://www.idref.fr"}],["https://www.idref.fr",""]]},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"used."},{"t":"Space"},{"t":"Str","c":"Its"},{"t":"Space"},{"t":"Str","c":"coverage,"},{"t":"Space"},{"t":"Str","c":"even"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"not"},{"t":"Space"},{"t":"Str","c":"perfect,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"affiliated"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"strong"},{"t":"Space"},{"t":"Str","c":"thanks"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"deep"},{"t":"Space"},{"t":"Str","c":"linking"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"idref"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"PhD"},{"t":"Space"},{"t":"Str","c":"thesis"},{"t":"Space"},{"t":"Str","c":"registration"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"France."},{"t":"Space"},{"t":"Str","c":"Specific"},{"t":"Space"},{"t":"Str","c":"heuristics"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"implemented"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"disambiguate"},{"t":"Space"},{"t":"Str","c":"names"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"link"},{"t":"Space"},{"t":"Str","c":"them"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"idref."}]},{"t":"Para","c":[{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"again"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"specific"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"used,"},{"t":"Space"},{"t":"Str","c":"especially"},{"t":"Space"},{"t":"Str","c":"SIRENE"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"RNSR."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"specific"},{"t":"Space"},{"t":"Str","c":"module"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/dataesr/affiliation-matcher"}],["https://github.com/dataesr/affiliation-matcher",""]]},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"implemented"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"link"},{"t":"Space"},{"t":"Str","c":"pblications"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"those"},{"t":"Space"},{"t":"Str","c":"PIDs"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"lhote_using_2021","citationHash":0}],[{"t":"Str","c":"[@lhote_using_2021]"}]]},{"t":"Str","c":"."}]},{"t":"Para","c":[{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"topics,"},{"t":"Space"},{"t":"Str","c":"wikidata"},{"t":"Space"},{"t":"Str","c":"identifiers"},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entity-fishing"},{"t":"Space"},{"t":"Str","c":"module"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/kermitt2/entity-fishing"}],["https://github.com/kermitt2/entity-fishing",""]]},{"t":"Space"},{"t":"Str","c":"cf"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"foppiano2020entity","citationHash":0}],[{"t":"Str","c":"[@foppiano2020entity]"}]]},{"t":"Str","c":"."}]},{"t":"Para","c":[{"t":"Str","c":"Other"},{"t":"Space"},{"t":"Str","c":"enrichments,"},{"t":"Space"},{"t":"Str","c":"like"},{"t":"Space"},{"t":"Str","c":"software"},{"t":"Space"},{"t":"Str","c":"detection"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"present."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"software"},{"t":"Space"},{"t":"Str","c":"mentions"},{"t":"Space"},{"t":"Str","c":"detections"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"GROBID"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"Softcite"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"bassinet:hal-04121339","citationHash":0}],[{"t":"Str","c":"[@bassinet:hal-04121339]"}]]},{"t":"Str","c":"."}]},{"t":"Header","c":[2,["elasticsearch-implementation",[],[]],[{"t":"Str","c":"2.3"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"implementation"}]]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"identify"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"would"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"too"},{"t":"Space"},{"t":"Str","c":"costly"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"go"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entire"},{"t":"Space"},{"t":"Str","c":"corpus."},{"t":"Space"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"pre-calculated"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"level"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"publication."},{"t":"Space"},{"t":"Str","c":"So,"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"3"},{"t":"Space"},{"t":"Str","c":"themes,"},{"t":"Space"},{"t":"Str","c":"T1,"},{"t":"Space"},{"t":"Str","c":"T2"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"T3,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"pre-calculated"},{"t":"Space"},{"t":"Str","c":"field,"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"level,"},{"t":"Space"},{"t":"Str","c":"contains"},{"t":"Space"},{"t":"Str","c":"all"},{"t":"Space"},{"t":"Str","c":"T1-T2,"},{"t":"Space"},{"t":"Str","c":"T1-T3"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"T2-T3"},{"t":"Space"},{"t":"Str","c":"pairs."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"co_topics"},{"t":"Space"},{"t":"Str","c":"field"},{"t":"Space"},{"t":"Str","c":"represents"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"co-appearance"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"publication."},{"t":"Space"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"then"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"elasticsearch’s"},{"t":"Space"},{"t":"Str","c":"aggregation"},{"t":"Space"},{"t":"Str","c":"functionality"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"present"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"efficiently."},{"t":"Space"},{"t":"Str","c":"By"},{"t":"Space"},{"t":"Str","c":"default,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"limit"},{"t":"Space"},{"t":"Str","c":"ourselves"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"top"},{"t":"Space"},{"t":"Str","c":"2000"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"ensure"},{"t":"Space"},{"t":"Str","c":"optimal"},{"t":"Space"},{"t":"Str","c":"performance."}]},{"t":"Para","c":[{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"practice,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"stored"},{"t":"Space"},{"t":"Str","c":"(the"},{"t":"Space"},{"t":"Str","c":"wikidata"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"topics,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example)"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"disambiguate"},{"t":"Space"},{"t":"Str","c":"entities."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"practice,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"given"},{"t":"Space"},{"t":"Str","c":"query,"},{"t":"Space"},{"t":"Str","c":"elasticsearch"},{"t":"Space"},{"t":"Str","c":"returns"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"response"},{"t":"Space"},{"t":"Str","c":"containing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example:"}]},{"t":"CodeBlock","c":[["",["json"],[]]," {\n \"key\": \"Q15305550###carbon sequestration---Q7942###climate change\",\n \"doc_count\": 17,\n },\n {\n \"key\": \"Q15305550###carbon sequestration---Q623###carbon\",\n \"doc_count\": 14,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q7942###Climate change\",\n \"doc_count\": 13,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q898653###Climate change mitigation\",\n \"doc_count\": 10,\n },\n {\n \"key\": \"Q397350###agroforestry---Q8486###coffee\",\n \"doc_count\": 10,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q1997###CO2\",\n \"doc_count\": 9,\n },\n {\n \"key\": \"Q623###carbon---Q627###nitrogen\",\n \"doc_count\": 9,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q623###carbon\",\n \"doc_count\": 7,\n },"]},{"t":"Header","c":[2,["network-creation",[],[]],[{"t":"Str","c":"2.4"},{"t":"Space"},{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"creation"}]]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"creation"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"involves"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"key"},{"t":"Space"},{"t":"Str","c":"steps:"},{"t":"Space"},{"t":"Str","c":"transforming"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph,"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"focus"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"interesting"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"applying"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"algorithms"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"visualization,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"detecting"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."},{"t":"Space"},{"t":"Str","c":"Below,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"detail"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"steps."}]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"creation"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"begins"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"obtained"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"Elasticsearch,"},{"t":"Space"},{"t":"Str","c":"utilizing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"open-source"},{"t":"Space"},{"t":"Str","c":"JavaScript"},{"t":"Space"},{"t":"Str","c":"library"},{"t":"Space"},{"t":"Str","c":"Graphology"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/graphology/graphology"}],["https://github.com/graphology/graphology",""]]},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"construct"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"manipulate"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."},{"t":"Space"},{"t":"Str","c":"Each"},{"t":"Space"},{"t":"Str","c":"link"},{"t":"Space"},{"t":"Str","c":"result"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"transformed"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges,"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"edge"},{"t":"Space"},{"t":"Str","c":"strength"},{"t":"Space"},{"t":"Str","c":"corresponding"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"aggregated"},{"t":"Space"},{"t":"Str","c":"documents."}]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"ensure"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"manageable"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"focuses"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"interesting"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"employ"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"strategy"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"prioritizes"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best-connected"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"rather"},{"t":"Space"},{"t":"Str","c":"than"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"largest"},{"t":"Space"},{"t":"Str","c":"nodes."},{"t":"Space"},{"t":"Str","c":"By"},{"t":"Space"},{"t":"Str","c":"default,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"maximum"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"300."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"helps"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"maintaining"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"computational"},{"t":"Space"},{"t":"Str","c":"efficiency"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interpretability"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."}]},{"t":"Para","c":[{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"theory,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"component"},{"t":"Space"},{"t":"Str","c":"refers"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"subgraph"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"paths,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"additional"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"larger"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"Graphology,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"components"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"iteratively"},{"t":"Space"},{"t":"Str","c":"removing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"smallest"},{"t":"Space"},{"t":"Str","c":"components"},{"t":"Space"},{"t":"Str","c":"until"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"falls"},{"t":"Space"},{"t":"Str","c":"below"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"component"},{"t":"Space"},{"t":"Str","c":"remains."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"largest"},{"t":"Space"},{"t":"Str","c":"component"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"then"},{"t":"Space"},{"t":"Str","c":"subjected"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"further"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"still"},{"t":"Space"},{"t":"Str","c":"exceeds"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"threshold."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"second"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"step,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"utilize"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"betweenness"},{"t":"Space"},{"t":"Str","c":"centrality"},{"t":"Space"},{"t":"Str","c":"metric"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"retain"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best-connected"},{"t":"Space"},{"t":"Str","c":"nodes."},{"t":"Space"},{"t":"Str","c":"Betweenness"},{"t":"Space"},{"t":"Str","c":"centrality"},{"t":"Space"},{"t":"Str","c":"measures"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"extent"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"lies"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"shortest"},{"t":"Space"},{"t":"Str","c":"path"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"thereby"},{"t":"Space"},{"t":"Str","c":"identifying"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"act"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"bridges"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."}]},{"t":"Para","c":[{"t":"Str","c":"Once"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"complete,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"apply"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"position"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"2D"},{"t":"Space"},{"t":"Str","c":"space."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"purpose,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ForceAtlas2"},{"t":"Space"},{"t":"Str","c":"algorithm,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"designed"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"produce"},{"t":"Space"},{"t":"Str","c":"aesthetically"},{"t":"Space"},{"t":"Str","c":"pleasing"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"informative"},{"t":"Space"},{"t":"Str","c":"layouts"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"simulating"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"physical"},{"t":"Space"},{"t":"Str","c":"system"},{"t":"Space"},{"t":"Str","c":"where"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"repel"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges"},{"t":"Space"},{"t":"Str","c":"act"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"springs"},{"t":"Space"},{"t":"Str","c":"pulling"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"together."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"clear"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"intuitive"},{"t":"Space"},{"t":"Str","c":"visual"},{"t":"Space"},{"t":"Str","c":"representation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"10.1371/journal.pone.0098679","citationHash":0}],[{"t":"Str","c":"[@10.1371/journal.pone.0098679]"}]]},{"t":"Str","c":"."},{"t":"LineBreak"},{"t":"Str","c":"Thanks"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"Graphology,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"settings"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ForceAtlas2"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"infered"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"order"},{"t":"Space"},{"t":"Str","c":"(number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes)"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"below:"}]},{"t":"CodeBlock","c":[["",[],[]],"barnesHutOptimize: order > 2000,\nstrongGravityMode: true,\ngravity: 0.05,\nscalingRatio: 10,\nslowDown: 1 + Math.log(order)"]},{"t":"Para","c":[{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"theory,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"corresponds"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"strongly"},{"t":"Space"},{"t":"Str","c":"interconnected"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other,"},{"t":"Space"},{"t":"Str","c":"while"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"less"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"outside"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"Space"},{"t":"Str","c":"Communities"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"identified"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"order"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"understand"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"underlying"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"patterns"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph,"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"well"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"analyze"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relationships"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"make"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"up."},{"t":"Space"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"identify"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"visualize"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"apply"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"Graphology."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"works"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"optimizing"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"modularity"},{"t":"Space"},{"t":"Str","c":"measure"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"evaluates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strength"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"Blondel_2008","citationHash":0}],[{"t":"Str","c":"[@Blondel_2008]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"More"},{"t":"Space"},{"t":"Str","c":"precisely,"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"seeks"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"maximize"},{"t":"Space"},{"t":"Str","c":"modularity"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"progressively"},{"t":"Space"},{"t":"Str","c":"moving"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"communities,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"iterative"},{"t":"Space"},{"t":"Str","c":"fashion."},{"t":"Space"},{"t":"Str","c":"At"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"stage,"},{"t":"Space"},{"t":"Str","c":"he"},{"t":"Space"},{"t":"Str","c":"merges"},{"t":"Space"},{"t":"Str","c":"neighboring"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"leads"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"improvement"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"overall"},{"t":"Space"},{"t":"Str","c":"modularity"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"iterative"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"continues"},{"t":"Space"},{"t":"Str","c":"until"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"further"},{"t":"Space"},{"t":"Str","c":"moves"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"increase"},{"t":"Space"},{"t":"Str","c":"modularity."}]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Code","c":[["",[],[]],"graphology-communities-louvain"]},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"module"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"used."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"way,"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"step"},{"t":"Space"},{"t":"Str","c":"(like"},{"t":"Space"},{"t":"Str","c":"spatizalization,"},{"t":"Space"},{"t":"Str","c":"community-detection)"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"implemented"},{"t":"Space"},{"t":"Str","c":"modularly."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"benchmark,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"case,"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Leiden"},{"t":"Space"},{"t":"Str","c":"algorithms"},{"t":"Space"},{"t":"Str","c":"would"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"desirable."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"graphology"},{"t":"Space"},{"t":"Str","c":"library"},{"t":"Space"},{"t":"Str","c":"started"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"while"},{"t":"Space"},{"t":"Str","c":"ago"},{"t":"Space"},{"t":"Str","c":"working"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"implementation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"leiden"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"(see"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/graphology/graphology/tree/master/src/communities-leiden"}],["https://github.com/graphology/graphology/tree/master/src/communities-leiden",""]]},{"t":"Str","c":")"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"implemented."}]},{"t":"Header","c":[2,["vosviewer-implementation",[],[]],[{"t":"Str","c":"2.5"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"implementation"}]]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"display"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"application,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"online"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"visualization"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/neesjanvaneck/VOSviewer-Online"}],["https://github.com/neesjanvaneck/VOSviewer-Online",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"It"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"software"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"popular"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"bibliometric"},{"t":"Space"},{"t":"Str","c":"studies"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"DBLP:journals/corr/abs-1006-1032","citationHash":0}],[{"t":"Str","c":"[@DBLP:journals/corr/abs-1006-1032]"}]]},{"t":"Str","c":"."}]},{"t":"Para","c":[{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"accepts"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"files"},{"t":"Space"},{"t":"Str","c":"formatted"},{"t":"Space"},{"t":"Str","c":"according"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"specific"},{"t":"Space"},{"t":"Str","c":"template"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://app.vosviewer.com/docs/file-types/json-file-type"}],["https://app.vosviewer.com/docs/file-types/json-file-type",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"template"},{"t":"Space"},{"t":"Str","c":"includes"},{"t":"Space"},{"t":"Str","c":"essential"},{"t":"Space"},{"t":"Str","c":"attributes"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges,"},{"t":"Space"},{"t":"Str","c":"such"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"ID,"},{"t":"Space"},{"t":"Str","c":"name,"},{"t":"Space"},{"t":"Str","c":"position,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"additional"},{"t":"Space"},{"t":"Str","c":"metadata."},{"t":"Space"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"ensure"},{"t":"Space"},{"t":"Str","c":"compatibility,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"transform"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"Graphology"},{"t":"Space"},{"t":"Str","c":"object"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"file"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"adheres"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"VOSviewer’s"},{"t":"Space"},{"t":"Str","c":"required"},{"t":"Space"},{"t":"Str","c":"format."}]},{"t":"Para","c":[{"t":"Str","c":"Once"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"file"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"generated,"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"renders"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"displaying"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"interactive"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"visually"},{"t":"Space"},{"t":"Str","c":"appealing"},{"t":"Space"},{"t":"Str","c":"manner."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"colorized"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"identified"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"clustering"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"performed"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"colorization"},{"t":"Space"},{"t":"Str","c":"helps"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"visually"},{"t":"Space"},{"t":"Str","c":"distinguishing"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"making"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"easier"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"analyze"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interpret"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"underlying"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interactions."}]},{"t":"Para","c":[{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"includes"},{"t":"Space"},{"t":"Str","c":"its"},{"t":"Space"},{"t":"Str","c":"own"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"parameters"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"layout"},{"t":"Space"},{"t":"Str","c":"customization."},{"t":"Space"},{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"after"},{"t":"Space"},{"t":"Str","c":"testing"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"options,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"found"},{"t":"Space"},{"t":"Str","c":"them"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"visually"},{"t":"Space"},{"t":"Str","c":"less"},{"t":"Space"},{"t":"Str","c":"intuitive"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"informative."},{"t":"Space"},{"t":"Str","c":"Consequently,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"chose"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ForceAtlas2"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"spatialization,"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"described"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"previous"},{"t":"Space"},{"t":"Str","c":"section,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"offers"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"more"},{"t":"Space"},{"t":"Str","c":"aesthetically"},{"t":"Space"},{"t":"Str","c":"pleasing"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"informative"},{"t":"Space"},{"t":"Str","c":"layout"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"network."}]},{"t":"Para","c":[{"t":"Image","c":[["",[],[]],[{"t":"Str","c":"Visualization"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"VOSviewer."},{"t":"LineBreak"},{"t":"Emph","c":[{"t":"Str","c":"(a)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"ForceAltlas2"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"infered"},{"t":"Space"},{"t":"Str","c":"settings"},{"t":"LineBreak"},{"t":"Str","c":"(b)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(attraction=2,"},{"t":"Space"},{"t":"Str","c":"repulsion=1)"},{"t":"LineBreak"},{"t":"Str","c":"(c)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(attraction=3,"},{"t":"Space"},{"t":"Str","c":"repulsion=1)"},{"t":"LineBreak"},{"t":"Str","c":"(d)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(attraction=1,"},{"t":"Space"},{"t":"Str","c":"repulsion=0)"}]}],["https://raw.githubusercontent.com/dataesr/scanr-ui/refs/heads/staging/doc_network/images/vosviewer-spatialization-comparison.jpg","fig:"]]}]},{"t":"Header","c":[1,["making-insightful-maps",[],[]],[{"t":"Str","c":"3."},{"t":"Space"},{"t":"Str","c":"Making"},{"t":"Space"},{"t":"Str","c":"insightful"},{"t":"Space"},{"t":"Str","c":"maps"}]]},{"t":"Para","c":[{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"feature"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"designed"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"users"},{"t":"Space"},{"t":"Str","c":"gain"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"better"},{"t":"Space"},{"t":"Str","c":"understanding"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"underlying"},{"t":"Space"},{"t":"Str","c":"structures"},{"t":"Space"},{"t":"Str","c":"via"},{"t":"Space"},{"t":"Str","c":"thematic"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"co-publication"},{"t":"Space"},{"t":"Str","c":"maps."},{"t":"Space"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user,"},{"t":"Space"},{"t":"Str","c":"it’s"},{"t":"Space"},{"t":"Str","c":"important"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"able"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"characterize"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"identified."},{"t":"Space"},{"t":"Str","c":"It"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"important"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"label"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"before"},{"t":"Space"},{"t":"Str","c":"describing"},{"t":"Space"},{"t":"Str","c":"them."}]},{"t":"Header","c":[2,["llm-trick",[],[]],[{"t":"Str","c":"3.1"},{"t":"Space"},{"t":"Str","c":"LLM"},{"t":"Space"},{"t":"Str","c":"trick"}]]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"name"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"generative"},{"t":"Space"},{"t":"Str","c":"AI"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"Mistral"},{"t":"Space"},{"t":"Str","c":"AI"},{"t":"Space"},{"t":"Str","c":"("},{"t":"Quoted","c":[{"t":"SingleQuote"},[{"t":"Str","c":"open-mistral-nemo"}]]},{"t":"Space"},{"t":"Str","c":"model)."},{"t":"SoftBreak"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"names"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"obtained"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"themes"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"collected"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"SoftBreak"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"time"},{"t":"Space"},{"t":"Str","c":"being,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"limit"},{"t":"Space"},{"t":"Str","c":"ourselves"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"2000"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"relevant"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"(in"},{"t":"Space"},{"t":"Str","c":"relation"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user’s"},{"t":"Space"},{"t":"Str","c":"search)"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"following"},{"t":"Space"},{"t":"Str","c":"prompt"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"used:"}]},{"t":"BlockQuote","c":[{"t":"Para","c":[{"t":"Str","c":"“"},{"t":"Space"},{"t":"Str","c":"You"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"tasked"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"naming"},{"t":"Space"},{"t":"Str","c":"distinct"},{"t":"Space"},{"t":"Str","c":"fields"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"publications."},{"t":"SoftBreak"},{"t":"Str","c":"Below"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"lists"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"topics"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"weights"},{"t":"Space"},{"t":"Str","c":"representing"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"SoftBreak"},{"t":"Str","c":"Your"},{"t":"Space"},{"t":"Str","c":"goal"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"provide"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"unique"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"descriptive"},{"t":"Space"},{"t":"Str","c":"name"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"field"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"best"},{"t":"Space"},{"t":"Str","c":"encapsulates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"essence"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"topics"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"SoftBreak"},{"t":"Str","c":"Each"},{"t":"Space"},{"t":"Str","c":"should"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"unique"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"short"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"possible."},{"t":"SoftBreak"},{"t":"Str","c":"If"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"topic"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"empty,"},{"t":"Space"},{"t":"Str","c":"output"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"empty"},{"t":"Space"},{"t":"Str","c":"string."},{"t":"SoftBreak"},{"t":"Str","c":"Output"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"object"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"single"},{"t":"Space"},{"t":"Str","c":"unique"},{"t":"Space"},{"t":"Str","c":"generated"},{"t":"Space"},{"t":"Str","c":"name."},{"t":"Space"},{"t":"Str","c":"”"}]}]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"illustrate"},{"t":"Space"},{"t":"Str","c":"its"},{"t":"Space"},{"t":"Str","c":"functionality,"},{"t":"Space"},{"t":"Str","c":"consider"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"following"},{"t":"Space"},{"t":"Str","c":"example:"}]},{"t":"CodeBlock","c":[["",[],[]],"// Input with each list corresponding to a community\n\"list1 = [Soil (8), Carbon Sequestration (5), Soil Organic Matter (5), Carbon (5), \nEcosystem Services (5), Priming Effect (4), Sequestration (4), Amazonian (3), Andosol (3)], \nlist2 = [Soil Organic Carbon (11), Carbon (10), Climate Change (7), Soil (7), \nCarbon Sequestration (6), Carbon Cycle (5), Soil Carbon (4)], \nlist3 = [Acl (7), Carbon (3), Carbon Sequestration (3), South Pacific Ocean (3), \nTrichodesmium (3), Crocosphaera (2), Crocosphaera-watsonii (2), Dinitrogen-fixation (2)]\"\n\n// Mistral output"]},{"t":"CodeBlock","c":[["",["json"],[]],"{\n \"list1\": \"Amazon Andosol Carbon Dynamics\",\n \"list2\": \"Soil Carbon and Climate Change\",\n \"list3\": \"South Pacific Ocean Carbon Cycling\"\n}"]},{"t":"Header","c":[2,["citation-hot-topics",[],[]],[{"t":"Str","c":"3.1"},{"t":"Space"},{"t":"Str","c":"Citation"},{"t":"Space"},{"t":"Str","c":"/"},{"t":"Space"},{"t":"Str","c":"hot"},{"t":"Space"},{"t":"Str","c":"topics"}]]},{"t":"Para","c":[{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"score"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"estimated"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"cluster."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"score"},{"t":"Space"},{"t":"Str","c":"relates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"recent"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"(over"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"last"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"years)"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"total"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"cluster."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"score"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"intended"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"detect"},{"t":"Space"},{"t":"Str","c":"hotspots"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"identified"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"corpus."},{"t":"SoftBreak"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"OpenAlex,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"today"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"datasource."},{"t":"Space"},{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"OpenAlex"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"incomplete"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"must"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"interpreted"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"caution"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"alperin2024analysissuitabilityopenalexbibliometric","citationHash":0}],[{"t":"Str","c":"[@alperin2024analysissuitabilityopenalexbibliometric]"}]]},{"t":"Str","c":"."}]},{"t":"Header","c":[2,["custom-perimeter",[],[]],[{"t":"Str","c":"3.2"},{"t":"Space"},{"t":"Str","c":"Custom"},{"t":"Space"},{"t":"Str","c":"perimeter"}]]},{"t":"Para","c":[{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"offers"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entire"},{"t":"Space"},{"t":"Str","c":"indexed"},{"t":"Space"},{"t":"Str","c":"corpus,"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"possible"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"adapt"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"restricted"},{"t":"Space"},{"t":"Str","c":"perimeter,"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user’s"},{"t":"Space"},{"t":"Str","c":"discretion."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"example,"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"laboratory"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"define"},{"t":"Space"},{"t":"Str","c":"its"},{"t":"Space"},{"t":"Str","c":"own"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"(based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"dedicated"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"perimeter"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"created."},{"t":"Space"},{"t":"Str","c":"Technically,"},{"t":"Space"},{"t":"Str","c":"elasticsearch"},{"t":"Space"},{"t":"Str","c":"queries"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"same,"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"just"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"additional"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"query"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"perimeter."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"embedded"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"website"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"iframe."},{"t":"Space"},{"t":"Str","c":"It’s"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"same"},{"t":"Space"},{"t":"Str","c":"principle"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"local"},{"t":"Space"},{"t":"Str","c":"barometer."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"approach"},{"t":"Space"},{"t":"Str","c":"eliminates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"need"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"automatic"},{"t":"Space"},{"t":"Str","c":"alignment"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"highly"},{"t":"Space"},{"t":"Str","c":"complex"},{"t":"Space"},{"t":"Str","c":"task."},{"t":"Space"},{"t":"Str","c":"Automation"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"possible"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"certain"},{"t":"Space"},{"t":"Str","c":"extent"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"lhote_using_2021","citationHash":0}],[{"t":"Str","c":"[@lhote_using_2021]"}]]},{"t":"Str","c":","},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"human"},{"t":"Space"},{"t":"Str","c":"curation"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"necessary"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"majority"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"cases"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"jeangirard:hal-04598201","citationHash":0}],[{"t":"Str","c":"[@jeangirard:hal-04598201]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"way,"},{"t":"Space"},{"t":"Str","c":"users"},{"t":"Space"},{"t":"Str","c":"retain"},{"t":"Space"},{"t":"Str","c":"control"},{"t":"Space"},{"t":"Str","c":"over"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"definition"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"perimeter,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"can,"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"wish,"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"distinct"},{"t":"Space"},{"t":"Str","c":"perimeters."}]},{"t":"Header","c":[1,["code-availibility",[],[]],[{"t":"Str","c":"4."},{"t":"Space"},{"t":"Str","c":"Code"},{"t":"Space"},{"t":"Str","c":"availibility"}]]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"code"},{"t":"Space"},{"t":"Str","c":"developed"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"web"},{"t":"Space"},{"t":"Str","c":"application"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"available"},{"t":"Space"},{"t":"Str","c":"online"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"GitHub"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/dataesr/scanr-ui"}],["https://github.com/dataesr/scanr-ui",""]]}]},{"t":"Header","c":[1,["references",[],[]],[{"t":"Str","c":"References"}]]}],"pandoc-api-version":[1,21],"meta":{"bibliography":{"t":"MetaInlines","c":[{"t":"Str","c":"bso.bib"}]},"date":{"t":"MetaInlines","c":[{"t":"Str","c":"January"},{"t":"Space"},{"t":"Str","c":"2025"}]},"geometry":{"t":"MetaInlines","c":[{"t":"Str","c":"left=3cm,"},{"t":"Space"},{"t":"Str","c":"right=3cm,"},{"t":"Space"},{"t":"Str","c":"top=3cm,"},{"t":"Space"},{"t":"Str","c":"bottom=3cm"}]},"keywords":{"t":"MetaList","c":[{"t":"MetaInlines","c":[{"t":"Str","c":"scanR"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"VOSviewer"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"graphology"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"ccommunity"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"detection"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"Elasticsearch"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"}]}]},"author":{"t":"MetaList","c":[{"t":"MetaMap","c":{"name":{"t":"MetaInlines","c":[{"t":"Str","c":"Victor Barbier"}]},"id":{"t":"MetaString","c":"Victor Barbier"},"institute":{"t":"MetaList","c":[{"t":"MetaString","c":"1"}]}}},{"t":"MetaMap","c":{"orcid":{"t":"MetaInlines","c":[{"t":"Str","c":"0000-0002-3767-7125"}]},"idref":{"t":"MetaInlines","c":[{"t":"Str","c":"242241344"}]},"name":{"t":"MetaInlines","c":[{"t":"Str","c":"Eric Jeangirard"}]},"id":{"t":"MetaString","c":"Eric Jeangirard"},"institute":{"t":"MetaList","c":[{"t":"MetaString","c":"1"}]}}}]},"abstract":{"t":"MetaBlocks","c":[{"t":"Para","c":[{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"introduces"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"novel"},{"t":"Space"},{"t":"Str","c":"methodology"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale,"},{"t":"Space"},{"t":"Str","c":"addressing"},{"t":"Space"},{"t":"Str","c":"challenges"},{"t":"Space"},{"t":"Str","c":"associated"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"bibliometric"},{"t":"Space"},{"t":"Str","c":"datasets."},{"t":"Space"},{"t":"Str","c":"By"},{"t":"Space"},{"t":"Str","c":"leveraging"},{"t":"Space"},{"t":"Str","c":"enriched"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"applying"},{"t":"Space"},{"t":"Str","c":"advanced"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"techniques"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"prioritize"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"construct"},{"t":"Space"},{"t":"Str","c":"detailed,"},{"t":"Space"},{"t":"Str","c":"scalable"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"maps."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"maps"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"enhanced"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"systematic"},{"t":"Space"},{"t":"Str","c":"disambiguation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"topics"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"persistent"},{"t":"Space"},{"t":"Str","c":"identifiers"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"specialized"},{"t":"Space"},{"t":"Str","c":"algorithms."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"proposed"},{"t":"Space"},{"t":"Str","c":"framework"},{"t":"Space"},{"t":"Str","c":"integrates"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"efficient"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"aggregation,"},{"t":"Space"},{"t":"Str","c":"Graphology"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(Force"},{"t":"Space"},{"t":"Str","c":"Atltas2)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"detection"},{"t":"Space"},{"t":"Str","c":"(Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"vizualization."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"Large"},{"t":"Space"},{"t":"Str","c":"Language"},{"t":"Space"},{"t":"Str","c":"Model"},{"t":"Space"},{"t":"Str","c":"(Mistral"},{"t":"Space"},{"t":"Str","c":"Nemo)"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"label"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"detected"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"OpenAlex"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"helps"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"enrich"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"counts"},{"t":"Space"},{"t":"Str","c":"estimation"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"detect"},{"t":"Space"},{"t":"Str","c":"hot"},{"t":"Space"},{"t":"Str","c":"topics."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"scalable"},{"t":"Space"},{"t":"Str","c":"approach"},{"t":"Space"},{"t":"Str","c":"enables"},{"t":"Space"},{"t":"Str","c":"insightful"},{"t":"Space"},{"t":"Str","c":"exploration"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"collaborations"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"thematic"},{"t":"Space"},{"t":"Str","c":"structures,"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"potential"},{"t":"Space"},{"t":"Str","c":"applications"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"strategic"},{"t":"Space"},{"t":"Str","c":"decision-making"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"science"},{"t":"Space"},{"t":"Str","c":"policy"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"funding."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"web"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"effective"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"global"},{"t":"Space"},{"t":"Str","c":"(national)"},{"t":"Space"},{"t":"Str","c":"scale"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"available"},{"t":"Space"},{"t":"Str","c":"(and"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"integrated"},{"t":"Space"},{"t":"Str","c":"via"},{"t":"Space"},{"t":"Str","c":"iframes)"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"perimeter"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"(from"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"organisms"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"laboratory)."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"available"},{"t":"Space"},{"t":"Str","c":"online"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://scanr.enseignementsup-recherche.gouv.fr/networks/get-started"}],["https://scanr.enseignementsup-recherche.gouv.fr/networks/get-started",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"All"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"methodologies"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"open-source"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"repo"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/dataesr/scanr-ui"}],["https://github.com/dataesr/scanr-ui",""]]},{"t":"Str","c":"."}]}]},"title":{"t":"MetaInlines","c":[{"t":"Str","c":"Mapping"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale"}]},"cito_cites":{"t":"MetaMap","c":{"citation":{"t":"MetaList","c":[{"t":"MetaString","c":"alperin2024analysissuitabilityopenalexbibliometric"},{"t":"MetaString","c":"10.1162/qss_a_00179"},{"t":"MetaString","c":"jeangirard:hal-04813230"},{"t":"MetaString","c":"lhote_using_2021"},{"t":"MetaString","c":"foppiano2020entity"},{"t":"MetaString","c":"bassinet:hal-04121339"},{"t":"MetaString","c":"10.1371/journal.pone.0098679"},{"t":"MetaString","c":"Blondel_2008"},{"t":"MetaString","c":"DBLP:journals/corr/abs-1006-1032"},{"t":"MetaString","c":"alperin2024analysissuitabilityopenalexbibliometric"},{"t":"MetaString","c":"lhote_using_2021"},{"t":"MetaString","c":"jeangirard:hal-04598201"}]}}},"institute":{"t":"MetaList","c":[{"t":"MetaMap","c":{"name":{"t":"MetaInlines","c":[{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"Ministry"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"Higher"},{"t":"Space"},{"t":"Str","c":"Education"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"Research,"},{"t":"Space"},{"t":"Str","c":"Paris,"},{"t":"Space"},{"t":"Str","c":"France"}]},"id":{"t":"MetaString","c":"mesr"},"index":{"t":"MetaInlines","c":[{"t":"Str","c":"1"}]}}}]}}} +{"blocks":[{"t":"Para","c":[{"t":"Strong","c":[{"t":"Str","c":"Keywords"}]},{"t":"Str","c":":"},{"t":"Space"},{"t":"Str","c":"scanR,"},{"t":"Space"},{"t":"Str","c":"VOSviewer,"},{"t":"Space"},{"t":"Str","c":"graphology,"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"community,"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"detection,"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal,"},{"t":"Space"},{"t":"Str","c":"Elasticsearch,"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"}]},{"t":"Header","c":[1,["motivation",[],[]],[{"t":"Str","c":"1."},{"t":"Space"},{"t":"Str","c":"Motivation"}]]},{"t":"Para","c":[{"t":"Str","c":"Analysing"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"provides"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"insight"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"evolution"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"academic"},{"t":"Space"},{"t":"Str","c":"disciplines."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"involves"},{"t":"Space"},{"t":"Str","c":"providing"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"analytical"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"visual"},{"t":"Space"},{"t":"Str","c":"representation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relationships"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"(e.g. researchers,"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"laboratories,"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"themes),"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"aim,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"particular,"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"understanding"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"networks"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"dynamics"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"collaboration,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"identifying"},{"t":"Space"},{"t":"Str","c":"collaborative"},{"t":"Space"},{"t":"Str","c":"groups"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"influences."},{"t":"Space"},{"t":"Str","c":"From"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"point"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"decision-makers,"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"type"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"useful"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"strategic"},{"t":"Space"},{"t":"Str","c":"decision-making"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"public"},{"t":"Space"},{"t":"Str","c":"policy"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"funding."}]},{"t":"Para","c":[{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"maps"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"generally"},{"t":"Space"},{"t":"Str","c":"deduced"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"bibliographic"},{"t":"Space"},{"t":"Str","c":"databases"},{"t":"Space"},{"t":"Str","c":"(open"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"proprietary),"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"co-publication"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"information."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"case"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"co-publications,"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"(authors,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example)"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"collaborated"},{"t":"Space"},{"t":"Str","c":"(co-published)"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"piece"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"then"},{"t":"Space"},{"t":"Str","c":"symmetrical."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"case"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"cites"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"work"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"another,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"references."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"directed"},{"t":"Space"},{"t":"Str","c":"link,"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"author"},{"t":"Space"},{"t":"Str","c":"may"},{"t":"Space"},{"t":"Str","c":"cite"},{"t":"Space"},{"t":"Str","c":"another"},{"t":"Space"},{"t":"Str","c":"without"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"reciprocal."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"lot"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"recent"},{"t":"Space"},{"t":"Str","c":"work"},{"t":"Space"},{"t":"Str","c":"uses"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"second"},{"t":"Space"},{"t":"Str","c":"approach,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"trying"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"calculate"},{"t":"Space"},{"t":"Str","c":"composite"},{"t":"Space"},{"t":"Str","c":"indicators"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"novelty"},{"t":"Space"},{"t":"Str","c":"(or"},{"t":"Space"},{"t":"Str","c":"innovation)"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"links."}]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"quality"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"completeness"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"bibliographic"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"are,"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"course,"},{"t":"Space"},{"t":"Str","c":"essential"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"produce"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"relevant"},{"t":"Space"},{"t":"Str","c":"map."},{"t":"Space"},{"t":"Str","c":"Today,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"quality"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"still"},{"t":"Space"},{"t":"Str","c":"needs"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"improved"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"alperin2024analysissuitabilityopenalexbibliometric","citationHash":0}],[{"t":"Str","c":"[@alperin2024analysissuitabilityopenalexbibliometric]"}]]},{"t":"Str","c":"."},{"t":"SoftBreak"},{"t":"Str","c":"On"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"hand,"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"possible"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"obtain"},{"t":"Space"},{"t":"Str","c":"quality"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"(and"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"co-publications)."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"example,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"Open"},{"t":"Space"},{"t":"Str","c":"Science"},{"t":"Space"},{"t":"Str","c":"Monitor"},{"t":"Space"},{"t":"Str","c":"(BSO)"},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"compiled"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"good"},{"t":"Space"},{"t":"Str","c":"coverage"},{"t":"Space"},{"t":"Str","c":"cf"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"10.1162/qss_a_00179","citationHash":0}],[{"t":"Str","c":"[@10.1162/qss_a_00179]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"exposed"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"jeangirard:hal-04813230","citationHash":0}],[{"t":"Str","c":"[@jeangirard:hal-04813230]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"containing"},{"t":"Space"},{"t":"Str","c":"about"},{"t":"Space"},{"t":"Str","c":"4"},{"t":"Space"},{"t":"Str","c":"millions"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"all"},{"t":"Space"},{"t":"Str","c":"disciplines."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"enriched"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"disambiguation"},{"t":"Space"},{"t":"Str","c":"persistent"},{"t":"Space"},{"t":"Str","c":"identifier"},{"t":"Space"},{"t":"Str","c":"(PID)"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"affiliations"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"topics."}]},{"t":"Header","c":[2,["previous-limits-of-the-scanr-application",[],[]],[{"t":"Str","c":"1.1"},{"t":"Space"},{"t":"Str","c":"Previous"},{"t":"Space"},{"t":"Str","c":"limits"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"application"}]]},{"t":"Para","c":[{"t":"Str","c":"Launched"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"2016,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"portal"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"search"},{"t":"Space"},{"t":"Str","c":"engine."},{"t":"Space"},{"t":"Str","c":"Its"},{"t":"Space"},{"t":"Str","c":"scope"},{"t":"Space"},{"t":"Str","c":"first"},{"t":"Space"},{"t":"Str","c":"focused"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"(institutions,"},{"t":"Space"},{"t":"Str","c":"laboratories"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"private"},{"t":"Space"},{"t":"Str","c":"companies)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"was"},{"t":"Space"},{"t":"Str","c":"extended"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"2020"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"cover"},{"t":"Space"},{"t":"Str","c":"fundings,"},{"t":"Space"},{"t":"Str","c":"publications,"},{"t":"Space"},{"t":"Str","c":"patents"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"Two"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"cases"},{"t":"Space"},{"t":"Str","c":"were"},{"t":"Space"},{"t":"Str","c":"covered."},{"t":"Space"},{"t":"Str","c":"Firstly,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ability"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"generate"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"search"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"corresponding"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"user"},{"t":"Space"},{"t":"Str","c":"query."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"laboratories,"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"funding"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"could"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"generated."},{"t":"Space"},{"t":"Str","c":"Secondly,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"(or"},{"t":"Space"},{"t":"Str","c":"laboratory),"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"unified"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"all"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"concerning"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"was"},{"t":"Space"},{"t":"Str","c":"grouped"},{"t":"Space"},{"t":"Str","c":"together"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"dedicated"},{"t":"Space"},{"t":"Str","c":"page"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"(administrative"},{"t":"Space"},{"t":"Str","c":"information,"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications,"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"funding,"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"partners,"},{"t":"Space"},{"t":"Str","c":"etc.)."}]},{"t":"Para","c":[{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"functions"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"gave"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"flat"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"dimensions,"},{"t":"Space"},{"t":"Str","c":"without"},{"t":"Space"},{"t":"Str","c":"providing"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"insights"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"laboratories"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"user"},{"t":"Space"},{"t":"Str","c":"interested"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"theme,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"contributors"},{"t":"Space"},{"t":"Str","c":"(those"},{"t":"Space"},{"t":"Str","c":"who"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"co-authored"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"publications)"},{"t":"Space"},{"t":"Str","c":"does"},{"t":"Space"},{"t":"Str","c":"not"},{"t":"Space"},{"t":"Str","c":"give"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"clear"},{"t":"Space"},{"t":"Str","c":"idea"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"work"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"how"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"interact"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"describe"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"attempt"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"detect"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"could"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"enable"},{"t":"Space"},{"t":"Str","c":"us"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"go"},{"t":"Space"},{"t":"Str","c":"further"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"creating"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"explore"},{"t":"Space"},{"t":"Str","c":"fields"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"innovation."}]},{"t":"Header","c":[2,["network-analysis-limits",[],[]],[{"t":"Str","c":"1.2"},{"t":"Space"},{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"limits"}]]},{"t":"Para","c":[{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"bibliographic"},{"t":"Space"},{"t":"Str","c":"studies"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relationships"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"corpus."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"general,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"limited"},{"t":"Space"},{"t":"Str","c":"because"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"calculations"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"determine"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"positions"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"networks"},{"t":"Space"},{"t":"Str","c":"require"},{"t":"Space"},{"t":"Str","c":"too"},{"t":"Space"},{"t":"Str","c":"many"},{"t":"Space"},{"t":"Str","c":"resources,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"addition"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"difficult"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"interpret."},{"t":"Space"},{"t":"Str","c":"As"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"result,"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"such"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"offer"},{"t":"Space"},{"t":"Str","c":"options"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"limiting"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"networks."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"first"},{"t":"Space"},{"t":"Str","c":"option"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"too"},{"t":"Space"},{"t":"Str","c":"many"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"particularly"},{"t":"Space"},{"t":"Str","c":"true"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"particle"},{"t":"Space"},{"t":"Str","c":"physics,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"thousand"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"As"},{"t":"Space"},{"t":"Str","c":"well"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"generating"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"networks,"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"hyperauthorship"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"seen"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"reducing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relevance"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"information"},{"t":"Space"},{"t":"Str","c":"conveyed"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"co-authorship"},{"t":"Space"},{"t":"Str","c":"links."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"second"},{"t":"Space"},{"t":"Str","c":"option"},{"t":"Space"},{"t":"Str","c":"offered"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"thresholds"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"limit"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"directly"},{"t":"Space"},{"t":"Str","c":"(minimum"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"minimum"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"node)."},{"t":"Space"},{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"approach"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"retaining"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"largest"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"obstacle"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"scaling"},{"t":"Space"},{"t":"Str","c":"up"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"corpora"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"million"},{"t":"Space"},{"t":"Str","c":"documents."},{"t":"Space"},{"t":"Str","c":"Indeed,"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"wish"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"concentrate"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"few"},{"t":"Space"},{"t":"Str","c":"hundred"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"high"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"resulting"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"risks"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"just"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"constellation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"single"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"them,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"fact"},{"t":"Space"},{"t":"Str","c":"made"},{"t":"Space"},{"t":"Str","c":"insignificant"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"terms"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"(or"},{"t":"Space"},{"t":"Str","c":"citations)"},{"t":"Space"},{"t":"Str","c":"per"},{"t":"Space"},{"t":"Str","c":"node."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"addition,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"processing"},{"t":"Space"},{"t":"Str","c":"time"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"long,"},{"t":"Space"},{"t":"Str","c":"making"},{"t":"Space"},{"t":"Str","c":"such"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"unusable"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"web"},{"t":"Space"},{"t":"Str","c":"application"},{"t":"Space"},{"t":"Str","c":"where"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user"},{"t":"Space"},{"t":"Str","c":"expects"},{"t":"Space"},{"t":"Str","c":"rapid"},{"t":"Space"},{"t":"Str","c":"interaction"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"application."}]},{"t":"Header","c":[1,["network-analysis-at-scale",[],[]],[{"t":"Str","c":"2."},{"t":"Space"},{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale"}]]},{"t":"Para","c":[{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"propose"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"method"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"overcoming"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"limitations"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"out"},{"t":"Space"},{"t":"Str","c":"above."},{"t":"Space"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"technique"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"reduce"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"dual"},{"t":"Space"},{"t":"Str","c":"approach:"},{"t":"Space"},{"t":"Str","c":"instead"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"links."}]},{"t":"Header","c":[2,["focusing-on-strongest-interactions",[],[]],[{"t":"Str","c":"2.1"},{"t":"Space"},{"t":"Str","c":"Focusing"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions"}]]},{"t":"Para","c":[{"t":"Str","c":"One"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"added"},{"t":"Space"},{"t":"Str","c":"values"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"view"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"show"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities,"},{"t":"Space"},{"t":"Str","c":"i.e. the"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"provide"},{"t":"Space"},{"t":"Str","c":"crucial"},{"t":"Space"},{"t":"Str","c":"information"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"communities."},{"t":"Space"},{"t":"Str","c":"Here"},{"t":"Space"},{"t":"Str","c":"If"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"needs"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"reduced"},{"t":"Space"},{"t":"Str","c":"(for"},{"t":"Space"},{"t":"Str","c":"reasons"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"computation,"},{"t":"Space"},{"t":"Str","c":"speed,"},{"t":"Space"},{"t":"Str","c":"legibility"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interpretability),"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"vital"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"preserve"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"carry"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"information,"},{"t":"Space"},{"t":"Str","c":"i.e. the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions."},{"t":"Space"},{"t":"Str","c":"With"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"reasoning,"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"seems"},{"t":"Space"},{"t":"Str","c":"logical"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"reduce"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"size"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"affecting"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"links."}]},{"t":"Para","c":[{"t":"Str","c":"Here,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"assume"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"there"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"isolated"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"(with"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"connection)."},{"t":"Space"},{"t":"Str","c":"An"},{"t":"Space"},{"t":"Str","c":"entity"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"connection"},{"t":"Space"},{"t":"Str","c":"will"},{"t":"Space"},{"t":"Str","c":"not"},{"t":"Space"},{"t":"Str","c":"appear"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"mapping."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"assumption"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"sometimes"},{"t":"Space"},{"t":"Str","c":"prove"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"false,"},{"t":"Space"},{"t":"Str","c":"particularly"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"case"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"literature,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example."}]},{"t":"Para","c":[{"t":"Str","c":"Thus,"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"given"},{"t":"Space"},{"t":"Str","c":"corpus,"},{"t":"Space"},{"t":"Str","c":"however"},{"t":"Space"},{"t":"Str","c":"large,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"seek"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"extract"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"pairs"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"co-signatures"},{"t":"Space"},{"t":"Str","c":"per"},{"t":"Space"},{"t":"Str","c":"pair"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"authors."},{"t":"Space"},{"t":"Str","c":"From"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"pairs,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"naturally"},{"t":"Space"},{"t":"Str","c":"find"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"deduce"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"new"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"If"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"independent"},{"t":"Space"},{"t":"Str","c":"components,"},{"t":"Space"},{"t":"Str","c":"i.e. several"},{"t":"Space"},{"t":"Str","c":"unconnected"},{"t":"Space"},{"t":"Str","c":"sub-graphs,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"decide"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"keep"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"component(s)."}]},{"t":"Header","c":[2,["publication-metadata-enrichment-to-produce-different-mapping",[],[]],[{"t":"Str","c":"2.2"},{"t":"Space"},{"t":"Str","c":"Publication"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"enrichment"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"produce"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"mapping"}]]},{"t":"Para","c":[{"t":"Str","c":"Each"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"goes"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"systematic"},{"t":"Space"},{"t":"Str","c":"enrichment"},{"t":"Space"},{"t":"Str","c":"pipeline,"},{"t":"Space"},{"t":"Str","c":"including"},{"t":"Space"},{"t":"Str","c":"author"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"affiliation"},{"t":"Space"},{"t":"Str","c":"disambiguation,"},{"t":"Space"},{"t":"Str","c":"full-text"},{"t":"Space"},{"t":"Str","c":"parsing,"},{"t":"Space"},{"t":"Str","c":"topic"},{"t":"Space"},{"t":"Str","c":"detection."}]},{"t":"Para","c":[{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French-specific"},{"t":"Space"},{"t":"Str","c":"persistent"},{"t":"Space"},{"t":"Str","c":"identifier"},{"t":"Space"},{"t":"Str","c":"(PID)"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://www.idref.fr"}],["https://www.idref.fr",""]]},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"used."},{"t":"Space"},{"t":"Str","c":"Its"},{"t":"Space"},{"t":"Str","c":"coverage,"},{"t":"Space"},{"t":"Str","c":"even"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"not"},{"t":"Space"},{"t":"Str","c":"perfect,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"affiliated"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"strong"},{"t":"Space"},{"t":"Str","c":"thanks"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"deep"},{"t":"Space"},{"t":"Str","c":"linking"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"idref"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"PhD"},{"t":"Space"},{"t":"Str","c":"thesis"},{"t":"Space"},{"t":"Str","c":"registration"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"France."},{"t":"Space"},{"t":"Str","c":"Specific"},{"t":"Space"},{"t":"Str","c":"heuristics"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"implemented"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"disambiguate"},{"t":"Space"},{"t":"Str","c":"names"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"link"},{"t":"Space"},{"t":"Str","c":"them"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"idref."}]},{"t":"Para","c":[{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"again"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"specific"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"used,"},{"t":"Space"},{"t":"Str","c":"especially"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://sirene.fr"}],["https://sirene.fr",""]]},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"http://rnsr.fr"}],["http://rnsr.fr",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"SIRENE"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"national"},{"t":"Space"},{"t":"Str","c":"(French)"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"public"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"private"},{"t":"Space"},{"t":"Str","c":"institutions."},{"t":"Space"},{"t":"Str","c":"RNSR"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"structures"},{"t":"Space"},{"t":"Str","c":"like"},{"t":"Space"},{"t":"Str","c":"laboratories."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"specific"},{"t":"Space"},{"t":"Str","c":"module"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/dataesr/affiliation-matcher"}],["https://github.com/dataesr/affiliation-matcher",""]]},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"implemented"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"link"},{"t":"Space"},{"t":"Str","c":"pblications"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"those"},{"t":"Space"},{"t":"Str","c":"PIDs"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"lhote_using_2021","citationHash":0}],[{"t":"Str","c":"[@lhote_using_2021]"}]]},{"t":"Str","c":"."}]},{"t":"Para","c":[{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"topics,"},{"t":"Space"},{"t":"Str","c":"wikidata"},{"t":"Space"},{"t":"Str","c":"identifiers"},{"t":"Space"},{"t":"Str","c":"has"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entity-fishing"},{"t":"Space"},{"t":"Str","c":"module"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/kermitt2/entity-fishing"}],["https://github.com/kermitt2/entity-fishing",""]]},{"t":"Space"},{"t":"Str","c":"cf"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"foppiano2020entity","citationHash":0}],[{"t":"Str","c":"[@foppiano2020entity]"}]]},{"t":"Str","c":"."}]},{"t":"Para","c":[{"t":"Str","c":"Other"},{"t":"Space"},{"t":"Str","c":"enrichments,"},{"t":"Space"},{"t":"Str","c":"like"},{"t":"Space"},{"t":"Str","c":"software"},{"t":"Space"},{"t":"Str","c":"detection"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"present."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"software"},{"t":"Space"},{"t":"Str","c":"mentions"},{"t":"Space"},{"t":"Str","c":"detections"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"GROBID"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"Softcite"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"bassinet:hal-04121339","citationHash":0}],[{"t":"Str","c":"[@bassinet:hal-04121339]"}]]},{"t":"Str","c":"."}]},{"t":"Header","c":[2,["elasticsearch-implementation",[],[]],[{"t":"Str","c":"2.3"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"implementation"}]]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"identify"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"would"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"too"},{"t":"Space"},{"t":"Str","c":"costly"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"go"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entire"},{"t":"Space"},{"t":"Str","c":"corpus."},{"t":"Space"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"pre-calculated"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"level"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"publication."},{"t":"Space"},{"t":"Str","c":"So,"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"linked"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"3"},{"t":"Space"},{"t":"Str","c":"themes,"},{"t":"Space"},{"t":"Str","c":"T1,"},{"t":"Space"},{"t":"Str","c":"T2"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"T3,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"pre-calculated"},{"t":"Space"},{"t":"Str","c":"field,"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"level,"},{"t":"Space"},{"t":"Str","c":"contains"},{"t":"Space"},{"t":"Str","c":"all"},{"t":"Space"},{"t":"Str","c":"T1-T2,"},{"t":"Space"},{"t":"Str","c":"T1-T3"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"T2-T3"},{"t":"Space"},{"t":"Str","c":"pairs."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"co_topics"},{"t":"Space"},{"t":"Str","c":"field"},{"t":"Space"},{"t":"Str","c":"represents"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"co-appearance"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"publication."},{"t":"Space"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"then"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"elasticsearch’s"},{"t":"Space"},{"t":"Str","c":"aggregation"},{"t":"Space"},{"t":"Str","c":"functionality"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"present"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"efficiently."},{"t":"Space"},{"t":"Str","c":"By"},{"t":"Space"},{"t":"Str","c":"default,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"limit"},{"t":"Space"},{"t":"Str","c":"ourselves"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"top"},{"t":"Space"},{"t":"Str","c":"2000"},{"t":"Space"},{"t":"Str","c":"links"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"ensure"},{"t":"Space"},{"t":"Str","c":"optimal"},{"t":"Space"},{"t":"Str","c":"performance."}]},{"t":"Para","c":[{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"practice,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"stored"},{"t":"Space"},{"t":"Str","c":"(the"},{"t":"Space"},{"t":"Str","c":"wikidata"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"topics,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example)"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"disambiguate"},{"t":"Space"},{"t":"Str","c":"entities."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"practice,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"given"},{"t":"Space"},{"t":"Str","c":"query,"},{"t":"Space"},{"t":"Str","c":"elasticsearch"},{"t":"Space"},{"t":"Str","c":"returns"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"response"},{"t":"Space"},{"t":"Str","c":"containing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"links,"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"example:"}]},{"t":"CodeBlock","c":[["",["json"],[]]," {\n \"key\": \"Q15305550###carbon sequestration---Q7942###climate change\",\n \"doc_count\": 17,\n },\n {\n \"key\": \"Q15305550###carbon sequestration---Q623###carbon\",\n \"doc_count\": 14,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q7942###Climate change\",\n \"doc_count\": 13,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q898653###Climate change mitigation\",\n \"doc_count\": 10,\n },\n {\n \"key\": \"Q397350###agroforestry---Q8486###coffee\",\n \"doc_count\": 10,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q1997###CO2\",\n \"doc_count\": 9,\n },\n {\n \"key\": \"Q623###carbon---Q627###nitrogen\",\n \"doc_count\": 9,\n },\n {\n \"key\": \"Q15305550###Carbon sequestration---Q623###carbon\",\n \"doc_count\": 7,\n },"]},{"t":"Header","c":[2,["network-creation",[],[]],[{"t":"Str","c":"2.4"},{"t":"Space"},{"t":"Str","c":"Network"},{"t":"Space"},{"t":"Str","c":"creation"}]]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"creation"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"involves"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"key"},{"t":"Space"},{"t":"Str","c":"steps:"},{"t":"Space"},{"t":"Str","c":"transforming"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph,"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"focus"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"interesting"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"applying"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"algorithms"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"visualization,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"detecting"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."},{"t":"Space"},{"t":"Str","c":"Below,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"detail"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"steps."}]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"creation"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"begins"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"obtained"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"Elasticsearch,"},{"t":"Space"},{"t":"Str","c":"utilizing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"open-source"},{"t":"Space"},{"t":"Str","c":"JavaScript"},{"t":"Space"},{"t":"Str","c":"library"},{"t":"Space"},{"t":"Str","c":"Graphology"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/graphology/graphology"}],["https://github.com/graphology/graphology",""]]},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"construct"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"manipulate"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."},{"t":"Space"},{"t":"Str","c":"Each"},{"t":"Space"},{"t":"Str","c":"link"},{"t":"Space"},{"t":"Str","c":"result"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"transformed"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges,"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"edge"},{"t":"Space"},{"t":"Str","c":"strength"},{"t":"Space"},{"t":"Str","c":"corresponding"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"aggregated"},{"t":"Space"},{"t":"Str","c":"documents."}]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"ensure"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"manageable"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"focuses"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"interesting"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"employ"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"strategy"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"prioritizes"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best-connected"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"rather"},{"t":"Space"},{"t":"Str","c":"than"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"largest"},{"t":"Space"},{"t":"Str","c":"nodes."},{"t":"Space"},{"t":"Str","c":"By"},{"t":"Space"},{"t":"Str","c":"default,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"maximum"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"300."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"helps"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"maintaining"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"computational"},{"t":"Space"},{"t":"Str","c":"efficiency"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interpretability"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."}]},{"t":"Para","c":[{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"theory,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"component"},{"t":"Space"},{"t":"Str","c":"refers"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"subgraph"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"paths,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"additional"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"larger"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"Graphology,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"components"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"iteratively"},{"t":"Space"},{"t":"Str","c":"removing"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"smallest"},{"t":"Space"},{"t":"Str","c":"components"},{"t":"Space"},{"t":"Str","c":"until"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"falls"},{"t":"Space"},{"t":"Str","c":"below"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"threshold"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"component"},{"t":"Space"},{"t":"Str","c":"remains."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"largest"},{"t":"Space"},{"t":"Str","c":"component"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"then"},{"t":"Space"},{"t":"Str","c":"subjected"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"further"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"still"},{"t":"Space"},{"t":"Str","c":"exceeds"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"threshold."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"second"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"step,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"utilize"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"betweenness"},{"t":"Space"},{"t":"Str","c":"centrality"},{"t":"Space"},{"t":"Str","c":"metric"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"retain"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best-connected"},{"t":"Space"},{"t":"Str","c":"nodes."},{"t":"Space"},{"t":"Str","c":"Betweenness"},{"t":"Space"},{"t":"Str","c":"centrality"},{"t":"Space"},{"t":"Str","c":"measures"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"extent"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"lies"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"shortest"},{"t":"Space"},{"t":"Str","c":"path"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"nodes,"},{"t":"Space"},{"t":"Str","c":"thereby"},{"t":"Space"},{"t":"Str","c":"identifying"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"act"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"bridges"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network."}]},{"t":"Para","c":[{"t":"Str","c":"Once"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"complete,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"apply"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"position"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"2D"},{"t":"Space"},{"t":"Str","c":"space."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"purpose,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ForceAtlas2"},{"t":"Space"},{"t":"Str","c":"algorithm,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"designed"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"produce"},{"t":"Space"},{"t":"Str","c":"informative"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"aesthetically"},{"t":"Space"},{"t":"Str","c":"pleasing"},{"t":"Space"},{"t":"Str","c":"layouts"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"simulating"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"physical"},{"t":"Space"},{"t":"Str","c":"system"},{"t":"Space"},{"t":"Str","c":"where"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"repel"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges"},{"t":"Space"},{"t":"Str","c":"act"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"springs"},{"t":"Space"},{"t":"Str","c":"pulling"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"together."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"clear"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"intuitive"},{"t":"Space"},{"t":"Str","c":"visual"},{"t":"Space"},{"t":"Str","c":"representation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"10.1371/journal.pone.0098679","citationHash":0}],[{"t":"Str","c":"[@10.1371/journal.pone.0098679]"}]]},{"t":"Str","c":"."},{"t":"LineBreak"},{"t":"Str","c":"Thanks"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"Graphology,"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"settings"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ForceAtlas2"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"infered"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"order"},{"t":"Space"},{"t":"Str","c":"(number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes)"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"below:"}]},{"t":"CodeBlock","c":[["",[],[]],"barnesHutOptimize: order > 2000,\nstrongGravityMode: true,\ngravity: 0.05,\nscalingRatio: 10,\nslowDown: 1 + Math.log(order)"]},{"t":"Para","c":[{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"theory,"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"corresponds"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"strongly"},{"t":"Space"},{"t":"Str","c":"interconnected"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"other,"},{"t":"Space"},{"t":"Str","c":"while"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"less"},{"t":"Space"},{"t":"Str","c":"connected"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"outside"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"Space"},{"t":"Str","c":"Communities"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"identified"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"order"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"understand"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"underlying"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"patterns"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph,"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"well"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"analyze"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"relationships"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"make"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"up."},{"t":"Space"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"identify"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"visualize"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"apply"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"Graphology."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"works"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"optimizing"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"modularity"},{"t":"Space"},{"t":"Str","c":"measure"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"evaluates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strength"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"Blondel_2008","citationHash":0}],[{"t":"Str","c":"[@Blondel_2008]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"More"},{"t":"Space"},{"t":"Str","c":"precisely,"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"seeks"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"maximize"},{"t":"Space"},{"t":"Str","c":"modularity"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"progressively"},{"t":"Space"},{"t":"Str","c":"moving"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"graph"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"communities,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"iterative"},{"t":"Space"},{"t":"Str","c":"fashion."},{"t":"Space"},{"t":"Str","c":"At"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"stage,"},{"t":"Space"},{"t":"Str","c":"he"},{"t":"Space"},{"t":"Str","c":"merges"},{"t":"Space"},{"t":"Str","c":"neighboring"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"leads"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"improvement"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"overall"},{"t":"Space"},{"t":"Str","c":"modularity"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"graph."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"iterative"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"continues"},{"t":"Space"},{"t":"Str","c":"until"},{"t":"Space"},{"t":"Str","c":"no"},{"t":"Space"},{"t":"Str","c":"further"},{"t":"Space"},{"t":"Str","c":"moves"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"increase"},{"t":"Space"},{"t":"Str","c":"modularity."}]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Code","c":[["",[],[]],"graphology-communities-louvain"]},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"module"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"used."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"way,"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"step"},{"t":"Space"},{"t":"Str","c":"(like"},{"t":"Space"},{"t":"Str","c":"spatizalization,"},{"t":"Space"},{"t":"Str","c":"community-detection)"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"implemented"},{"t":"Space"},{"t":"Str","c":"modularly."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"benchmark,"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"case,"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Leiden"},{"t":"Space"},{"t":"Str","c":"algorithms"},{"t":"Space"},{"t":"Str","c":"would"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"desirable."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"graphology"},{"t":"Space"},{"t":"Str","c":"library"},{"t":"Space"},{"t":"Str","c":"started"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"while"},{"t":"Space"},{"t":"Str","c":"ago"},{"t":"Space"},{"t":"Str","c":"working"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"implementation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"leiden"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"(see"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/graphology/graphology/tree/master/src/communities-leiden"}],["https://github.com/graphology/graphology/tree/master/src/communities-leiden",""]]},{"t":"Str","c":")"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"implemented."}]},{"t":"Header","c":[2,["vosviewer-implementation",[],[]],[{"t":"Str","c":"2.5"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"implementation"}]]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"display"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"application,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"online"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"visualization"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/neesjanvaneck/VOSviewer-Online"}],["https://github.com/neesjanvaneck/VOSviewer-Online",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"It"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"software"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"very"},{"t":"Space"},{"t":"Str","c":"popular"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"bibliometric"},{"t":"Space"},{"t":"Str","c":"studies"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"DBLP:journals/corr/abs-1006-1032","citationHash":0}],[{"t":"Str","c":"[@DBLP:journals/corr/abs-1006-1032]"}]]},{"t":"Str","c":"."}]},{"t":"Para","c":[{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"accepts"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"files"},{"t":"Space"},{"t":"Str","c":"formatted"},{"t":"Space"},{"t":"Str","c":"according"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"specific"},{"t":"Space"},{"t":"Str","c":"template"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://app.vosviewer.com/docs/file-types/json-file-type"}],["https://app.vosviewer.com/docs/file-types/json-file-type",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"template"},{"t":"Space"},{"t":"Str","c":"includes"},{"t":"Space"},{"t":"Str","c":"essential"},{"t":"Space"},{"t":"Str","c":"attributes"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges,"},{"t":"Space"},{"t":"Str","c":"such"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"node"},{"t":"Space"},{"t":"Str","c":"ID,"},{"t":"Space"},{"t":"Str","c":"name,"},{"t":"Space"},{"t":"Str","c":"position,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"additional"},{"t":"Space"},{"t":"Str","c":"metadata."},{"t":"Space"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"ensure"},{"t":"Space"},{"t":"Str","c":"compatibility,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"transform"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"Graphology"},{"t":"Space"},{"t":"Str","c":"object"},{"t":"Space"},{"t":"Str","c":"into"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"file"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"adheres"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"VOSviewer’s"},{"t":"Space"},{"t":"Str","c":"required"},{"t":"Space"},{"t":"Str","c":"format."}]},{"t":"Para","c":[{"t":"Str","c":"Once"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"file"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"generated,"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"renders"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"displaying"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"edges"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"interactive"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"visually"},{"t":"Space"},{"t":"Str","c":"appealing"},{"t":"Space"},{"t":"Str","c":"manner."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"nodes"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"colorized"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"identified"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"clustering"},{"t":"Space"},{"t":"Str","c":"process"},{"t":"Space"},{"t":"Str","c":"performed"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"colorization"},{"t":"Space"},{"t":"Str","c":"helps"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"visually"},{"t":"Space"},{"t":"Str","c":"distinguishing"},{"t":"Space"},{"t":"Str","c":"different"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"network,"},{"t":"Space"},{"t":"Str","c":"making"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"easier"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"analyze"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interpret"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"underlying"},{"t":"Space"},{"t":"Str","c":"structure"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"interactions."}]},{"t":"Para","c":[{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"includes"},{"t":"Space"},{"t":"Str","c":"its"},{"t":"Space"},{"t":"Str","c":"own"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"parameters"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"layout"},{"t":"Space"},{"t":"Str","c":"customization."},{"t":"Space"},{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"after"},{"t":"Space"},{"t":"Str","c":"testing"},{"t":"Space"},{"t":"Str","c":"these"},{"t":"Space"},{"t":"Str","c":"options,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"found"},{"t":"Space"},{"t":"Str","c":"them"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"visually"},{"t":"Space"},{"t":"Str","c":"less"},{"t":"Space"},{"t":"Str","c":"intuitive"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"informative."},{"t":"Space"},{"t":"Str","c":"Consequently,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"chose"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"ForceAtlas2"},{"t":"Space"},{"t":"Str","c":"algorithm"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"spatialization,"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"described"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"previous"},{"t":"Space"},{"t":"Str","c":"section,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"offers"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"more"},{"t":"Space"},{"t":"Str","c":"aesthetically"},{"t":"Space"},{"t":"Str","c":"pleasing"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"informative"},{"t":"Space"},{"t":"Str","c":"layout"},{"t":"Space"},{"t":"Str","c":"by"},{"t":"Space"},{"t":"Str","c":"being"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"set"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"our"},{"t":"Space"},{"t":"Str","c":"network."}]},{"t":"Para","c":[{"t":"Image","c":[["",[],[]],[{"t":"Str","c":"Visualization"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"VOSviewer."},{"t":"LineBreak"},{"t":"Emph","c":[{"t":"Str","c":"(a)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"ForceAltlas2"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"infered"},{"t":"Space"},{"t":"Str","c":"settings"},{"t":"LineBreak"},{"t":"Str","c":"(b)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(attraction=2,"},{"t":"Space"},{"t":"Str","c":"repulsion=1)"},{"t":"LineBreak"},{"t":"Str","c":"(c)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(attraction=3,"},{"t":"Space"},{"t":"Str","c":"repulsion=1)"},{"t":"LineBreak"},{"t":"Str","c":"(d)"},{"t":"Space"},{"t":"Str","c":"Using"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(attraction=1,"},{"t":"Space"},{"t":"Str","c":"repulsion=0)"}]}],["https://raw.githubusercontent.com/dataesr/scanr-ui/refs/heads/staging/doc_network/images/vosviewer-spatialization-comparison.jpg","fig:"]]}]},{"t":"Header","c":[1,["making-insightful-maps",[],[]],[{"t":"Str","c":"3."},{"t":"Space"},{"t":"Str","c":"Making"},{"t":"Space"},{"t":"Str","c":"insightful"},{"t":"Space"},{"t":"Str","c":"maps"}]]},{"t":"Para","c":[{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"feature"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"designed"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"users"},{"t":"Space"},{"t":"Str","c":"gain"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"better"},{"t":"Space"},{"t":"Str","c":"understanding"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"underlying"},{"t":"Space"},{"t":"Str","c":"structures"},{"t":"Space"},{"t":"Str","c":"via"},{"t":"Space"},{"t":"Str","c":"thematic"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"co-publication"},{"t":"Space"},{"t":"Str","c":"maps."},{"t":"Space"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user,"},{"t":"Space"},{"t":"Str","c":"it’s"},{"t":"Space"},{"t":"Str","c":"important"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"able"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"characterize"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"identified."},{"t":"Space"},{"t":"Str","c":"It"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"important"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"label"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"before"},{"t":"Space"},{"t":"Str","c":"describing"},{"t":"Space"},{"t":"Str","c":"them."}]},{"t":"Header","c":[2,["llm-trick",[],[]],[{"t":"Str","c":"3.1"},{"t":"Space"},{"t":"Str","c":"LLM"},{"t":"Space"},{"t":"Str","c":"trick"}]]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"name"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"generative"},{"t":"Space"},{"t":"Str","c":"AI"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"Mistral"},{"t":"Space"},{"t":"Str","c":"AI"},{"t":"Space"},{"t":"Str","c":"("},{"t":"Quoted","c":[{"t":"SingleQuote"},[{"t":"Str","c":"open-mistral-nemo"}]]},{"t":"Space"},{"t":"Str","c":"model)."},{"t":"SoftBreak"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"names"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"obtained"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"main"},{"t":"Space"},{"t":"Str","c":"themes"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"collected"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"SoftBreak"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"time"},{"t":"Space"},{"t":"Str","c":"being,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"limit"},{"t":"Space"},{"t":"Str","c":"ourselves"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"2000"},{"t":"Space"},{"t":"Str","c":"most"},{"t":"Space"},{"t":"Str","c":"relevant"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"(in"},{"t":"Space"},{"t":"Str","c":"relation"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user’s"},{"t":"Space"},{"t":"Str","c":"search)"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"following"},{"t":"Space"},{"t":"Str","c":"prompt"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"used:"}]},{"t":"BlockQuote","c":[{"t":"Para","c":[{"t":"Str","c":"“"},{"t":"Space"},{"t":"Str","c":"You"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"tasked"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"naming"},{"t":"Space"},{"t":"Str","c":"distinct"},{"t":"Space"},{"t":"Str","c":"fields"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"publications."},{"t":"SoftBreak"},{"t":"Str","c":"Below"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"lists"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"topics"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"weights"},{"t":"Space"},{"t":"Str","c":"representing"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"SoftBreak"},{"t":"Str","c":"Your"},{"t":"Space"},{"t":"Str","c":"goal"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"provide"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"unique"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"descriptive"},{"t":"Space"},{"t":"Str","c":"name"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"field"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"best"},{"t":"Space"},{"t":"Str","c":"encapsulates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"essence"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"topics"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"that"},{"t":"Space"},{"t":"Str","c":"community."},{"t":"SoftBreak"},{"t":"Str","c":"Each"},{"t":"Space"},{"t":"Str","c":"should"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"unique"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"short"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"possible."},{"t":"SoftBreak"},{"t":"Str","c":"If"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"topic"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"empty,"},{"t":"Space"},{"t":"Str","c":"output"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"empty"},{"t":"Space"},{"t":"Str","c":"string."},{"t":"SoftBreak"},{"t":"Str","c":"Output"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"JSON"},{"t":"Space"},{"t":"Str","c":"object"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"single"},{"t":"Space"},{"t":"Str","c":"unique"},{"t":"Space"},{"t":"Str","c":"generated"},{"t":"Space"},{"t":"Str","c":"name."},{"t":"Space"},{"t":"Str","c":"”"}]}]},{"t":"Para","c":[{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"illustrate"},{"t":"Space"},{"t":"Str","c":"its"},{"t":"Space"},{"t":"Str","c":"functionality,"},{"t":"Space"},{"t":"Str","c":"consider"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"following"},{"t":"Space"},{"t":"Str","c":"example:"}]},{"t":"CodeBlock","c":[["",[],[]],"// Input with each list corresponding to a community\n\"list1 = [Soil (8), Carbon Sequestration (5), Soil Organic Matter (5), Carbon (5), \nEcosystem Services (5), Priming Effect (4), Sequestration (4), Amazonian (3), Andosol (3)], \nlist2 = [Soil Organic Carbon (11), Carbon (10), Climate Change (7), Soil (7), \nCarbon Sequestration (6), Carbon Cycle (5), Soil Carbon (4)], \nlist3 = [Acl (7), Carbon (3), Carbon Sequestration (3), South Pacific Ocean (3), \nTrichodesmium (3), Crocosphaera (2), Crocosphaera-watsonii (2), Dinitrogen-fixation (2)]\"\n\n// Mistral output"]},{"t":"CodeBlock","c":[["",["json"],[]],"{\n \"list1\": \"Amazon Andosol Carbon Dynamics\",\n \"list2\": \"Soil Carbon and Climate Change\",\n \"list3\": \"South Pacific Ocean Carbon Cycling\"\n}"]},{"t":"Header","c":[2,["citation-hot-topics",[],[]],[{"t":"Str","c":"3.1"},{"t":"Space"},{"t":"Str","c":"Citation"},{"t":"Space"},{"t":"Str","c":"/"},{"t":"Space"},{"t":"Str","c":"hot"},{"t":"Space"},{"t":"Str","c":"topics"}]]},{"t":"Para","c":[{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"score"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"estimated"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"each"},{"t":"Space"},{"t":"Str","c":"cluster."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"score"},{"t":"Space"},{"t":"Str","c":"relates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"recent"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"(over"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"last"},{"t":"Space"},{"t":"Str","c":"two"},{"t":"Space"},{"t":"Str","c":"years)"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"number"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"total"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"cluster."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"score"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"intended"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"help"},{"t":"Space"},{"t":"Str","c":"detect"},{"t":"Space"},{"t":"Str","c":"hotspots"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"identified"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"corpus."},{"t":"SoftBreak"},{"t":"Str","c":"We"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"OpenAlex,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"today"},{"t":"Space"},{"t":"Str","c":"one"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"datasource."},{"t":"Space"},{"t":"Str","c":"However,"},{"t":"Space"},{"t":"Str","c":"citations"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"OpenAlex"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"incomplete"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"must"},{"t":"Space"},{"t":"Str","c":"therefore"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"interpreted"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"caution"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"alperin2024analysissuitabilityopenalexbibliometric","citationHash":0}],[{"t":"Str","c":"[@alperin2024analysissuitabilityopenalexbibliometric]"}]]},{"t":"Str","c":"."}]},{"t":"Header","c":[2,["custom-perimeter",[],[]],[{"t":"Str","c":"3.2"},{"t":"Space"},{"t":"Str","c":"Custom"},{"t":"Space"},{"t":"Str","c":"perimeter"}]]},{"t":"Para","c":[{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"offers"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"entire"},{"t":"Space"},{"t":"Str","c":"indexed"},{"t":"Space"},{"t":"Str","c":"corpus,"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"it"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"possible"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"adapt"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"restricted"},{"t":"Space"},{"t":"Str","c":"perimeter,"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"user’s"},{"t":"Space"},{"t":"Str","c":"discretion."},{"t":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"example,"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"or"},{"t":"Space"},{"t":"Str","c":"laboratory"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"define"},{"t":"Space"},{"t":"Str","c":"its"},{"t":"Space"},{"t":"Str","c":"own"},{"t":"Space"},{"t":"Str","c":"corpus"},{"t":"Space"},{"t":"Str","c":"(based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"list"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"publications)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"dedicated"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"perimeter"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"automatically"},{"t":"Space"},{"t":"Str","c":"created."},{"t":"Space"},{"t":"Str","c":"Technically,"},{"t":"Space"},{"t":"Str","c":"elasticsearch"},{"t":"Space"},{"t":"Str","c":"queries"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"same,"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"just"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"additional"},{"t":"Space"},{"t":"Str","c":"filter"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"query"},{"t":"Space"},{"t":"Str","c":"only"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"publications"},{"t":"Space"},{"t":"Str","c":"within"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"perimeter."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"embedded"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"website"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"an"},{"t":"Space"},{"t":"Str","c":"iframe."},{"t":"Space"},{"t":"Str","c":"It’s"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"same"},{"t":"Space"},{"t":"Str","c":"principle"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"local"},{"t":"Space"},{"t":"Str","c":"Open"},{"t":"Space"},{"t":"Str","c":"Science"},{"t":"Space"},{"t":"Str","c":"Monitor:"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"benefit"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"whole"},{"t":"Space"},{"t":"Str","c":"infrastructure"},{"t":"Space"},{"t":"Str","c":"already"},{"t":"Space"},{"t":"Str","c":"inplace"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"get"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"custom"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"based"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"same"},{"t":"Space"},{"t":"Str","c":"data,"},{"t":"Space"},{"t":"Str","c":"treatments"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"technologic"},{"t":"Space"},{"t":"Str","c":"stack"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"national"},{"t":"Space"},{"t":"Str","c":"tool."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"approach"},{"t":"Space"},{"t":"Str","c":"eliminates"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"need"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"automatic"},{"t":"Space"},{"t":"Str","c":"alignment"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"which"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"highly"},{"t":"Space"},{"t":"Str","c":"complex"},{"t":"Space"},{"t":"Str","c":"task."},{"t":"Space"},{"t":"Str","c":"Automation"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"possible"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"certain"},{"t":"Space"},{"t":"Str","c":"extent"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"lhote_using_2021","citationHash":0}],[{"t":"Str","c":"[@lhote_using_2021]"}]]},{"t":"Str","c":","},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"human"},{"t":"Space"},{"t":"Str","c":"curation"},{"t":"Space"},{"t":"Str","c":"remains"},{"t":"Space"},{"t":"Str","c":"necessary"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"majority"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"cases"},{"t":"Space"},{"t":"Cite","c":[[{"citationSuffix":[],"citationNoteNum":0,"citationMode":{"t":"NormalCitation"},"citationPrefix":[],"citationId":"jeangirard:hal-04598201","citationHash":0}],[{"t":"Str","c":"[@jeangirard:hal-04598201]"}]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"In"},{"t":"Space"},{"t":"Str","c":"this"},{"t":"Space"},{"t":"Str","c":"way,"},{"t":"Space"},{"t":"Str","c":"users"},{"t":"Space"},{"t":"Str","c":"retain"},{"t":"Space"},{"t":"Str","c":"control"},{"t":"Space"},{"t":"Str","c":"over"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"definition"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"their"},{"t":"Space"},{"t":"Str","c":"perimeter,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"can,"},{"t":"Space"},{"t":"Str","c":"if"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"wish,"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"several"},{"t":"Space"},{"t":"Str","c":"distinct"},{"t":"Space"},{"t":"Str","c":"perimeters."}]},{"t":"Header","c":[1,["code-availibility",[],[]],[{"t":"Str","c":"4."},{"t":"Space"},{"t":"Str","c":"Code"},{"t":"Space"},{"t":"Str","c":"availibility"}]]},{"t":"Para","c":[{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"code"},{"t":"Space"},{"t":"Str","c":"developed"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"web"},{"t":"Space"},{"t":"Str","c":"application"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"available"},{"t":"Space"},{"t":"Str","c":"online"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"GitHub"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/dataesr/scanr-ui"}],["https://github.com/dataesr/scanr-ui",""]]}]},{"t":"Header","c":[1,["references",[],[]],[{"t":"Str","c":"References"}]]}],"pandoc-api-version":[1,21],"meta":{"bibliography":{"t":"MetaInlines","c":[{"t":"Str","c":"bso.bib"}]},"date":{"t":"MetaInlines","c":[{"t":"Str","c":"January"},{"t":"Space"},{"t":"Str","c":"2025"}]},"geometry":{"t":"MetaInlines","c":[{"t":"Str","c":"left=3cm,"},{"t":"Space"},{"t":"Str","c":"right=3cm,"},{"t":"Space"},{"t":"Str","c":"top=3cm,"},{"t":"Space"},{"t":"Str","c":"bottom=3cm"}]},"keywords":{"t":"MetaList","c":[{"t":"MetaInlines","c":[{"t":"Str","c":"scanR"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"VOSviewer"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"graphology"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"ccommunity"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"detection"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"Elasticsearch"}]},{"t":"MetaInlines","c":[{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"}]}]},"author":{"t":"MetaList","c":[{"t":"MetaMap","c":{"name":{"t":"MetaInlines","c":[{"t":"Str","c":"Victor Barbier"}]},"id":{"t":"MetaString","c":"Victor Barbier"},"institute":{"t":"MetaList","c":[{"t":"MetaString","c":"2"}]}}},{"t":"MetaMap","c":{"orcid":{"t":"MetaInlines","c":[{"t":"Str","c":"0000-0002-3767-7125"}]},"idref":{"t":"MetaInlines","c":[{"t":"Str","c":"242241344"}]},"name":{"t":"MetaInlines","c":[{"t":"Str","c":"Eric Jeangirard"}]},"id":{"t":"MetaString","c":"Eric Jeangirard"},"institute":{"t":"MetaList","c":[{"t":"MetaString","c":"1"}]}}}]},"abstract":{"t":"MetaBlocks","c":[{"t":"Para","c":[{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"study"},{"t":"Space"},{"t":"Str","c":"introduces"},{"t":"Space"},{"t":"Str","c":"a"},{"t":"Space"},{"t":"Str","c":"novel"},{"t":"Space"},{"t":"Str","c":"methodology"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"mapping"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale,"},{"t":"Space"},{"t":"Str","c":"addressing"},{"t":"Space"},{"t":"Str","c":"challenges"},{"t":"Space"},{"t":"Str","c":"associated"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"bibliometric"},{"t":"Space"},{"t":"Str","c":"datasets."},{"t":"Space"},{"t":"Str","c":"By"},{"t":"Space"},{"t":"Str","c":"leveraging"},{"t":"Space"},{"t":"Str","c":"enriched"},{"t":"Space"},{"t":"Str","c":"publication"},{"t":"Space"},{"t":"Str","c":"metadata"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"portal"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"applying"},{"t":"Space"},{"t":"Str","c":"advanced"},{"t":"Space"},{"t":"Str","c":"filtering"},{"t":"Space"},{"t":"Str","c":"techniques"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"prioritize"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"strongest"},{"t":"Space"},{"t":"Str","c":"interactions"},{"t":"Space"},{"t":"Str","c":"between"},{"t":"Space"},{"t":"Str","c":"entities,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"construct"},{"t":"Space"},{"t":"Str","c":"detailed,"},{"t":"Space"},{"t":"Str","c":"scalable"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"maps."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"maps"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"enhanced"},{"t":"Space"},{"t":"Str","c":"through"},{"t":"Space"},{"t":"Str","c":"systematic"},{"t":"Space"},{"t":"Str","c":"disambiguation"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"authors,"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"topics"},{"t":"Space"},{"t":"Str","c":"using"},{"t":"Space"},{"t":"Str","c":"persistent"},{"t":"Space"},{"t":"Str","c":"identifiers"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"specialized"},{"t":"Space"},{"t":"Str","c":"algorithms."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"proposed"},{"t":"Space"},{"t":"Str","c":"framework"},{"t":"Space"},{"t":"Str","c":"integrates"},{"t":"Space"},{"t":"Str","c":"Elasticsearch"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"efficient"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"aggregation,"},{"t":"Space"},{"t":"Str","c":"Graphology"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"spatialization"},{"t":"Space"},{"t":"Str","c":"(Force"},{"t":"Space"},{"t":"Str","c":"Atltas2)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"detection"},{"t":"Space"},{"t":"Str","c":"(Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm)"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"network"},{"t":"Space"},{"t":"Str","c":"vizualization."},{"t":"Space"},{"t":"Str","c":"A"},{"t":"Space"},{"t":"Str","c":"Large"},{"t":"Space"},{"t":"Str","c":"Language"},{"t":"Space"},{"t":"Str","c":"Model"},{"t":"Space"},{"t":"Str","c":"(Mistral"},{"t":"Space"},{"t":"Str","c":"Nemo)"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"label"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"detected"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"OpenAlex"},{"t":"Space"},{"t":"Str","c":"data"},{"t":"Space"},{"t":"Str","c":"helps"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"enrich"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"results"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"citation"},{"t":"Space"},{"t":"Str","c":"counts"},{"t":"Space"},{"t":"Str","c":"estimation"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"detect"},{"t":"Space"},{"t":"Str","c":"hot"},{"t":"Space"},{"t":"Str","c":"topics."},{"t":"Space"},{"t":"Str","c":"This"},{"t":"Space"},{"t":"Str","c":"scalable"},{"t":"Space"},{"t":"Str","c":"approach"},{"t":"Space"},{"t":"Str","c":"enables"},{"t":"Space"},{"t":"Str","c":"insightful"},{"t":"Space"},{"t":"Str","c":"exploration"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"collaborations"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"thematic"},{"t":"Space"},{"t":"Str","c":"structures,"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"potential"},{"t":"Space"},{"t":"Str","c":"applications"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"strategic"},{"t":"Space"},{"t":"Str","c":"decision-making"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"science"},{"t":"Space"},{"t":"Str","c":"policy"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"funding."},{"t":"Space"},{"t":"Str","c":"These"},{"t":"Space"},{"t":"Str","c":"web"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"effective"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"global"},{"t":"Space"},{"t":"Str","c":"(national)"},{"t":"Space"},{"t":"Str","c":"scale"},{"t":"Space"},{"t":"Str","c":"but"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"also"},{"t":"Space"},{"t":"Str","c":"available"},{"t":"Space"},{"t":"Str","c":"(and"},{"t":"Space"},{"t":"Str","c":"can"},{"t":"Space"},{"t":"Str","c":"be"},{"t":"Space"},{"t":"Str","c":"integrated"},{"t":"Space"},{"t":"Str","c":"via"},{"t":"Space"},{"t":"Str","c":"iframes)"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"perimeter"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"institution"},{"t":"Space"},{"t":"Str","c":"(from"},{"t":"Space"},{"t":"Str","c":"large"},{"t":"Space"},{"t":"Str","c":"research"},{"t":"Space"},{"t":"Str","c":"organisms"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"any"},{"t":"Space"},{"t":"Str","c":"laboratory)."},{"t":"Space"},{"t":"Str","c":"The"},{"t":"Space"},{"t":"Str","c":"scanR"},{"t":"Space"},{"t":"Str","c":"community"},{"t":"Space"},{"t":"Str","c":"analysis"},{"t":"Space"},{"t":"Str","c":"tool"},{"t":"Space"},{"t":"Str","c":"is"},{"t":"Space"},{"t":"Str","c":"available"},{"t":"Space"},{"t":"Str","c":"online"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://scanr.enseignementsup-recherche.gouv.fr/networks/get-started"}],["https://scanr.enseignementsup-recherche.gouv.fr/networks/get-started",""]]},{"t":"Str","c":"."},{"t":"Space"},{"t":"Str","c":"All"},{"t":"Space"},{"t":"Str","c":"tools"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"methodologies"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"open-source"},{"t":"Space"},{"t":"Str","c":"on"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"repo"},{"t":"Space"},{"t":"Link","c":[["",[],[]],[{"t":"Str","c":"https://github.com/dataesr/scanr-ui"}],["https://github.com/dataesr/scanr-ui",""]]},{"t":"Str","c":"."}]}]},"title":{"t":"MetaInlines","c":[{"t":"Str","c":"Mapping"},{"t":"Space"},{"t":"Str","c":"scientific"},{"t":"Space"},{"t":"Str","c":"communities"},{"t":"Space"},{"t":"Str","c":"at"},{"t":"Space"},{"t":"Str","c":"scale"}]},"cito_cites":{"t":"MetaMap","c":{"citation":{"t":"MetaList","c":[{"t":"MetaString","c":"alperin2024analysissuitabilityopenalexbibliometric"},{"t":"MetaString","c":"10.1162/qss_a_00179"},{"t":"MetaString","c":"jeangirard:hal-04813230"},{"t":"MetaString","c":"lhote_using_2021"},{"t":"MetaString","c":"foppiano2020entity"},{"t":"MetaString","c":"bassinet:hal-04121339"},{"t":"MetaString","c":"10.1371/journal.pone.0098679"},{"t":"MetaString","c":"Blondel_2008"},{"t":"MetaString","c":"DBLP:journals/corr/abs-1006-1032"},{"t":"MetaString","c":"alperin2024analysissuitabilityopenalexbibliometric"},{"t":"MetaString","c":"lhote_using_2021"},{"t":"MetaString","c":"jeangirard:hal-04598201"}]}}},"institute":{"t":"MetaList","c":[{"t":"MetaMap","c":{"name":{"t":"MetaInlines","c":[{"t":"Str","c":"French"},{"t":"Space"},{"t":"Str","c":"Ministry"},{"t":"Space"},{"t":"Str","c":"of"},{"t":"Space"},{"t":"Str","c":"Higher"},{"t":"Space"},{"t":"Str","c":"Education"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"Research,"},{"t":"Space"},{"t":"Str","c":"Paris,"},{"t":"Space"},{"t":"Str","c":"France"}]},"id":{"t":"MetaString","c":"mesr"},"index":{"t":"MetaInlines","c":[{"t":"Str","c":"1"}]}}},{"t":"MetaMap","c":{"name":{"t":"MetaInlines","c":[{"t":"Str","c":"National"},{"t":"Space"},{"t":"Str","c":"Institute"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"Research"},{"t":"Space"},{"t":"Str","c":"in"},{"t":"Space"},{"t":"Str","c":"Digital"},{"t":"Space"},{"t":"Str","c":"Science"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"Technology,"},{"t":"Space"},{"t":"Str","c":"INRIA,"},{"t":"Space"},{"t":"Str","c":"Paris,"},{"t":"Space"},{"t":"Str","c":"France"}]},"id":{"t":"MetaString","c":"inria"},"index":{"t":"MetaInlines","c":[{"t":"Str","c":"2"}]}}}]}}} diff --git a/doc_network/out.epub b/doc_network/out.epub index 2941fac5..1f2a8873 100644 Binary files a/doc_network/out.epub and b/doc_network/out.epub differ diff --git a/doc_network/out.html b/doc_network/out.html index 79d3b1ec..52456369 100644 --- a/doc_network/out.html +++ b/doc_network/out.html @@ -494,12 +494,14 @@
Analysing and mapping scientific communities provides an insight into the structure and evolution of academic disciplines. This involves providing an analytical and visual representation of the relationships between entities (e.g. researchers, research laboratories, research themes), with the aim, in particular, of understanding the networks and dynamics of scientific collaboration, and identifying collaborative groups and their influences. From the point of view of decision-makers, this type of tool is useful for strategic decision-making with a view to public policy and funding.
These maps are generally deduced from data in bibliographic databases (open or proprietary), based on co-publication or citation information. In the case of co-publications, two entities (authors, for example) will be linked if they have collaborated (co-published) on a piece of research. These links are then symmetrical. In the case of citation links, two authors will be linked if one cites the research work of another, in the list of references. This is a directed link, as one author may cite another without this being reciprocal. A lot of recent work uses this second approach, for example by trying to calculate composite indicators of novelty (or innovation) based on citation links.
-The quality and completeness of the bibliographic metadata used are, of course, essential if we are to produce a relevant map. Today, the quality of open citation data still needs to be improved, cf (Alperin et al. 2024). On the other hand, it is possible to obtain quality metadata on publications (and therefore links to co-publications). For example, the French Open Science Monitor (BSO) has compiled a corpus of French publications with good coverage cf (Chaignon and Egret 2022). This corpus is exposed in the French research portal scanR (Jeangirard 2024). This is a corpus containing about 4 millions publications in all disciplines. These publications have been enriched with disambuation persistent identifier (PID) on authors, affiliations and topics.
+The quality and completeness of the bibliographic metadata used are, of course, essential if we are to produce a relevant map. Today, the quality of open citation data still needs to be improved (Alperin et al. 2024). On the other hand, it is possible to obtain quality metadata on publications (and therefore links to co-publications). For example, the French Open Science Monitor (BSO) has compiled a corpus of French publications with good coverage cf (Chaignon and Egret 2022). This corpus is exposed in the French research portal scanR (Jeangirard 2024). This is a corpus containing about 4 millions publications in all disciplines. These publications have been enriched with disambiguation persistent identifier (PID) on authors, affiliations and topics.
Launched in 2016, the scanR portal used to be a search engine. Its scope first focused on research entities (institutions, laboratories and private companies) and was extended in 2020 to cover fundings, publications, patents and authors. Two main use cases were covered. Firstly, the ability to generate a list of search results corresponding to a user query. A list of laboratories, authors, funding or publications could be generated. Secondly, for each institution (or laboratory), a unified view of all the data concerning it was grouped together on a dedicated page in scanR (administrative information, list of publications, list of funding, main partners, etc.).
However, these functions only gave a flat view of the different dimensions, without providing any insights into the interactions between laboratories or authors. For a user interested in a research theme, for example, the list of the main contributors (those who have co-authored the most publications) does not give a clear idea of which research communities are at work and how they interact with each other. A network analysis tool to describe these interactions and attempt to detect research communities could therefore enable us to go further in creating tools to help explore fields of research and innovation.
@@ -521,12 +523,13 @@We propose a method for overcoming the limitations set out above. We also use a filtering technique to reduce the size of the network, but with a dual approach: instead of filtering the nodes, we filter the links.
One of the added values of mapping with a network view is to show the interactions between entities, i.e. the links between the nodes in the graph. These links provide crucial information that can be used to structure communities. If the size of the network needs to be reduced (for reasons of computation, speed, legibility and interpretability), it is vital to preserve the links that carry the most information, i.e. the strongest interactions. With this reasoning, it seems logical to reduce the size of the network by only affecting the strongest links.
+One of the added values of mapping with a network view is to show the interactions between entities, i.e. the links between the nodes in the graph. These links provide crucial information that can be used to structure communities. Here If the size of the network needs to be reduced (for reasons of computation, speed, legibility and interpretability), it is vital to preserve the links that carry the most information, i.e. the strongest interactions. With this reasoning, it seems logical to reduce the size of the network by only affecting the strongest links.
+Here, we assume that there are no large isolated nodes (with no connection). An entity with no connection will not appear in the mapping. This assumption can sometimes prove to be false, particularly in the case of authors in literature, for example.
Thus, from a given corpus, however large, we seek to extract the pairs of entities with the strongest interactions, for example the most co-signatures per pair of authors. From this list of pairs, we can naturally find the nodes of the graph and deduce a new graph. If the graph has several independent components, i.e. several unconnected sub-graphs, we can decide to keep only the main component(s).
Each publication in the scanR corpus goes through a systematic enrichment pipeline, including author and affiliation disambiguation, full-text parsing, topic detection.
For authors, the French-specific persistent identifier (PID) https://www.idref.fr is used. Its coverage, even if not perfect, for French affiliated authors is strong thanks to the deep linking between idref and the PhD thesis registration in France. Specific heuristics have been implemented to disambiguate names and link them to idref.
-For affiliations, again French specific PID are used, especially SIRENE and RNSR. A specific module based on Elasticsearch https://github.com/dataesr/affiliation-matcher has been implemented to automatically link pblications to those PIDs (L’Hôte and Jeangirard 2021).
+For affiliations, again French specific PID are used, especially https://sirene.fr and http://rnsr.fr. SIRENE is a national (French) PID for public and private institutions. RNSR is a French PID for the research structures like laboratories. A specific module based on Elasticsearch https://github.com/dataesr/affiliation-matcher has been implemented to automatically link pblications to those PIDs (L’Hôte and Jeangirard 2021).
For topics, wikidata identifiers has been used using the entity-fishing module https://github.com/kermitt2/entity-fishing cf (Foppiano and Romary 2020).
Other enrichments, like software detection are also present. These are based on software mentions detections using GROBID and Softcite at scale on the French corpus (Bassinet et al. 2023).
The network creation process begins with the results obtained from Elasticsearch, utilizing the open-source JavaScript library Graphology https://github.com/graphology/graphology to construct and manipulate the network. Each link result from Elasticsearch is transformed into nodes and edges, with edge strength corresponding to the number of aggregated documents.
To ensure that the network remains manageable and focuses on the most interesting nodes, we employ a strategy that prioritizes the best-connected nodes rather than the largest nodes. By default, the maximum number of nodes is set to 300. This threshold helps in maintaining the computational efficiency and interpretability of the network.
In graph theory, a component refers to a subgraph in which any two nodes are connected to each other by paths, and which is connected to no additional nodes in the larger graph. Using Graphology, we filter the network components by iteratively removing the smallest components until the number of nodes falls below the threshold or only one component remains. This largest component is then subjected to further filtering if it still exceeds the node threshold. In this second filtering step, we utilize the betweenness centrality metric to retain the best-connected nodes. Betweenness centrality measures the extent to which a node lies on the shortest path between other nodes, thereby identifying nodes that act as bridges within the network.
-Once the filtering process is complete, we apply a spatialization algorithm to position the nodes in a 2D space. For this purpose, we use the ForceAtlas2 algorithm, which is designed to produce aesthetically pleasing and informative layouts by simulating a physical system where nodes repel each other and edges act as springs pulling connected nodes together. This results in a clear and intuitive visual representation of the network (Jacomy 2014).
+
Once the filtering process is complete, we apply a spatialization algorithm to position the nodes in a 2D space. For this purpose, we use the ForceAtlas2 algorithm, which is designed to produce informative and aesthetically pleasing layouts by simulating a physical system where nodes repel each other and edges act as springs pulling connected nodes together. This results in a clear and intuitive visual representation of the network (Jacomy 2014).
Thanks to Graphology, the settings of the ForceAtlas2 algorithm are automatically infered from our network order (number of nodes) as below:
barnesHutOptimize: order > 2000,
strongGravityMode: true,
@@ -615,7 +618,7 @@ 3.1 LLM trick
3.1 Citation / hot topics
A citation score is estimated for each cluster. This score relates the number of recent citations (over the last two years) to the number of total publications in the cluster. This score is intended to help detect hotspots in the communities identified in the corpus. We use citations data from OpenAlex, which is as of today one of the best open source datasource. However, citations metadata from OpenAlex remains incomplete and must therefore be interpreted with caution (Alperin et al. 2024).
3.2 Custom perimeter
-scanR offers this mapping tool for the entire indexed corpus, but it is also possible to adapt the tool to a restricted perimeter, at the user’s discretion. For example, an institution or laboratory can define its own corpus (based on a list of publications) and a mapping tool dedicated to this perimeter is automatically created. Technically, elasticsearch queries are the same, with just an additional filter to query only the publications within the perimeter. The tool can be embedded in any website using an iframe. It’s the same principle as the local barometer. This approach eliminates the need for automatic alignment of affiliations, which remains a highly complex task. Automation is possible to a certain extent (L’Hôte and Jeangirard 2021), but human curation remains necessary in the majority of cases (Jeangirard, Bracco, and L’Hôte 2024). In this way, users retain control over the definition of their perimeter, and can, if they wish, have several distinct perimeters.
+scanR offers this mapping tool for the entire indexed corpus, but it is also possible to adapt the tool to a restricted perimeter, at the user’s discretion. For example, an institution or laboratory can define its own corpus (based on a list of publications) and a mapping tool dedicated to this perimeter is automatically created. Technically, elasticsearch queries are the same, with just an additional filter to query only the publications within the perimeter. The tool can be embedded in any website using an iframe. It’s the same principle as the local Open Science Monitor: any French institution can benefit from the whole infrastructure already inplace and get a custom tool based on the same data, treatments and technologic stack as the national tool. This approach eliminates the need for automatic alignment of affiliations, which remains a highly complex task. Automation is possible to a certain extent (L’Hôte and Jeangirard 2021), but human curation remains necessary in the majority of cases (Jeangirard, Bracco, and L’Hôte 2024). In this way, users retain control over the definition of their perimeter, and can, if they wish, have several distinct perimeters.
4. Code availibility
The code developed for the scanR web application is open source and available online on GitHub https://github.com/dataesr/scanr-ui
References
diff --git a/doc_network/out.latex b/doc_network/out.latex
index d4bd4b97..ff4b3db0 100644
--- a/doc_network/out.latex
+++ b/doc_network/out.latex
@@ -131,7 +131,7 @@ analysis},
\title{Mapping scientific communities at scale}
\usepackage{authblk}
\author[%
- 1%
+ 2%
]{%
Victor Barbier%
%
@@ -146,6 +146,8 @@ analysis},
}
\affil[1]{French Ministry of Higher Education and Research, Paris,
France}
+\affil[2]{National Institute for Research in Digital Science and
+Technology, INRIA, Paris, France}
\date{January 2025}
\makeatletter
@@ -223,14 +225,14 @@ composite indicators of novelty (or innovation) based on citation links.
The quality and completeness of the bibliographic metadata used are, of
course, essential if we are to produce a relevant map. Today, the
-quality of open citation data still needs to be improved, cf (Alperin et
-al. 2024). On the other hand, it is possible to obtain quality metadata
-on publications (and therefore links to co-publications). For example,
-the French Open Science Monitor (BSO) has compiled a corpus of French
+quality of open citation data still needs to be improved (Alperin et al.
+2024). On the other hand, it is possible to obtain quality metadata on
+publications (and therefore links to co-publications). For example, the
+French Open Science Monitor (BSO) has compiled a corpus of French
publications with good coverage cf (Chaignon and Egret 2022). This
corpus is exposed in the French research portal scanR (Jeangirard 2024).
This is a corpus containing about 4 millions publications in all
-disciplines. These publications have been enriched with disambuation
+disciplines. These publications have been enriched with disambiguation
persistent identifier (PID) on authors, affiliations and topics.
\hypertarget{previous-limits-of-the-scanr-application}{%
@@ -301,11 +303,17 @@ interactions}\label{focusing-on-strongest-interactions}}
One of the added values of mapping with a network view is to show the
interactions between entities, i.e.~the links between the nodes in the
graph. These links provide crucial information that can be used to
-structure communities. If the size of the network needs to be reduced
-(for reasons of computation, speed, legibility and interpretability), it
-is vital to preserve the links that carry the most information, i.e.~the
-strongest interactions. With this reasoning, it seems logical to reduce
-the size of the network by only affecting the strongest links.
+structure communities. Here If the size of the network needs to be
+reduced (for reasons of computation, speed, legibility and
+interpretability), it is vital to preserve the links that carry the most
+information, i.e.~the strongest interactions. With this reasoning, it
+seems logical to reduce the size of the network by only affecting the
+strongest links.
+
+Here, we assume that there are no large isolated nodes (with no
+connection). An entity with no connection will not appear in the
+mapping. This assumption can sometimes prove to be false, particularly
+in the case of authors in literature, for example.
Thus, from a given corpus, however large, we seek to extract the pairs
of entities with the strongest interactions, for example the most
@@ -329,11 +337,13 @@ between idref and the PhD thesis registration in France. Specific
heuristics have been implemented to disambiguate names and link them to
idref.
-For affiliations, again French specific PID are used, especially SIRENE
-and RNSR. A specific module based on Elasticsearch
-\url{https://github.com/dataesr/affiliation-matcher} has been
-implemented to automatically link pblications to those PIDs (L'Hôte and
-Jeangirard 2021).
+For affiliations, again French specific PID are used, especially
+\url{https://sirene.fr} and \url{http://rnsr.fr}. SIRENE is a national
+(French) PID for public and private institutions. RNSR is a French PID
+for the research structures like laboratories. A specific module based
+on Elasticsearch \url{https://github.com/dataesr/affiliation-matcher}
+has been implemented to automatically link pblications to those PIDs
+(L'Hôte and Jeangirard 2021).
For topics, wikidata identifiers has been used using the entity-fishing
module \url{https://github.com/kermitt2/entity-fishing} cf (Foppiano and
@@ -435,8 +445,8 @@ identifying nodes that act as bridges within the network.
Once the filtering process is complete, we apply a spatialization
algorithm to position the nodes in a 2D space. For this purpose, we use
-the ForceAtlas2 algorithm, which is designed to produce aesthetically
-pleasing and informative layouts by simulating a physical system where
+the ForceAtlas2 algorithm, which is designed to produce informative and
+aesthetically pleasing layouts by simulating a physical system where
nodes repel each other and edges act as springs pulling connected nodes
together. This results in a clear and intuitive visual representation of
the network (Jacomy 2014).\\
@@ -590,14 +600,16 @@ corpus (based on a list of publications) and a mapping tool dedicated to
this perimeter is automatically created. Technically, elasticsearch
queries are the same, with just an additional filter to query only the
publications within the perimeter. The tool can be embedded in any
-website using an iframe. It's the same principle as the local barometer.
-This approach eliminates the need for automatic alignment of
-affiliations, which remains a highly complex task. Automation is
-possible to a certain extent (L'Hôte and Jeangirard 2021), but human
-curation remains necessary in the majority of cases (Jeangirard, Bracco,
-and L'Hôte 2024). In this way, users retain control over the definition
-of their perimeter, and can, if they wish, have several distinct
-perimeters.
+website using an iframe. It's the same principle as the local Open
+Science Monitor: any French institution can benefit from the whole
+infrastructure already inplace and get a custom tool based on the same
+data, treatments and technologic stack as the national tool. This
+approach eliminates the need for automatic alignment of affiliations,
+which remains a highly complex task. Automation is possible to a certain
+extent (L'Hôte and Jeangirard 2021), but human curation remains
+necessary in the majority of cases (Jeangirard, Bracco, and L'Hôte
+2024). In this way, users retain control over the definition of their
+perimeter, and can, if they wish, have several distinct perimeters.
\hypertarget{code-availibility}{%
\section{4. Code availibility}\label{code-availibility}}
diff --git a/doc_network/out.odt b/doc_network/out.odt
index 67d72423..0e87e47d 100644
Binary files a/doc_network/out.odt and b/doc_network/out.odt differ
diff --git a/doc_network/out.pdf b/doc_network/out.pdf
index 44404eb3..6f34f226 100644
Binary files a/doc_network/out.pdf and b/doc_network/out.pdf differ