diff --git a/doc_network/bso.md b/doc_network/bso.md index 6fd51ac..24a1159 100644 --- a/doc_network/bso.md +++ b/doc_network/bso.md @@ -101,14 +101,34 @@ In practice, a PID is also stored (the wikidata for topics, for example) to disa ## 2.3 VOSviewer implementation -We use the open source VOSviewer online tool for network visualization [https://github.com/neesjanvaneck/VOSviewer-Online](https://github.com/neesjanvaneck/VOSviewer-Online). It is based on the VOSviewer tool which is very popular for network analysis in bibliometric studies [@DBLP:journals/corr/abs-1006-1032]. +We use the open source VOSviewer online tool for network visualization [https://github.com/neesjanvaneck/VOSviewer-Online](https://github.com/neesjanvaneck/VOSviewer-Online). It is based on the VOSviewer tool which is very popular for network analysis in bibliometric studies [@DBLP:journals/corr/abs-1006-1032]. + +In graph theory, a community corresponds to a set of nodes in a graph that are strongly interconnected with each other, while being less connected with nodes outside this community. Communities can be identified in order to understand the underlying structure and patterns of the graph, as well as to analyze the relationships and interactions between the entities that make it up. +To identify communities, we use the Louvain method. This algorithm works by optimizing a modularity measure that evaluates the strength of communities in a graph. More precisely, Louvain seeks to maximize modularity by progressively moving the nodes of a graph into different communities, in an iterative fashion. +At each stage, he merges neighboring communities if this leads to an improvement in the overall modularity of the graph. This iterative process continues until no further moves can increase modularity. +Clusters are computed with the Louvain algorithm, from the open source javascript library graphology-communities-louvain. -## 2.4 LLM trick # 3. Making insightful maps +This scanR feature is designed to help users gain a better understanding of the underlying structures via thematic or co-publication maps. To help the user, it's important to be able to characterize each of the communities automatically identified. It is therefore important to label each community before describing them. + +## 3.1 LLM trick + +To name the communities we use generative AI from Mistral AI ('open-mistral-nemo' model). +The names are obtained from the main themes of the publications collected for each community. +For the time being, we limit ourselves to the 2000 most relevant publications (in relation to the user's search) for each community. The following prompt is used: + +> You have been tasked with naming distinct fields of study for several communities of research publications. +> Below are lists of topics and their weights representing each community. +> Your goal is to provide a unique and descriptive name for each field of study that best encapsulates the essence of the topics within that community. +> Each should be unique and as short as possible. +> If the list of topic is empty, output a empty string. +> Output as JSON object with the list number and the single unique generated name. ``` + ## 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 [@alperin2024analysissuitabilityopenalexbibliometric]. ## 3.2 Custom perimeter diff --git a/doc_network/mapping_at_scale.pdf b/doc_network/mapping_at_scale.pdf index 383203a..ef7b7b5 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 31e1648..be545b5 100644 --- a/doc_network/mapping_at_scale.tex +++ b/doc_network/mapping_at_scale.tex @@ -340,19 +340,61 @@ \subsection{2.3 VOSviewer the VOSviewer tool which is very popular for network analysis in bibliometric studies (Waltman, Eck, and Noyons 2010). -\hypertarget{llm-trick}{% -\subsection{2.4 LLM trick}\label{llm-trick}} +In graph theory, a community corresponds to a set of nodes in a graph +that are strongly interconnected with each other, while being less +connected with nodes outside this community. Communities can be +identified in order to understand the underlying structure and patterns +of the graph, as well as to analyze the relationships and interactions +between the entities that make it up. To identify communities, we use +the Louvain method. This algorithm works by optimizing a modularity +measure that evaluates the strength of communities in a graph. More +precisely, Louvain seeks to maximize modularity by progressively moving +the nodes of a graph into different communities, in an iterative +fashion. At each stage, he merges neighboring communities if this leads +to an improvement in the overall modularity of the graph. This iterative +process continues until no further moves can increase modularity. +Clusters are computed with the Louvain algorithm, from the open source +javascript library graphology-communities-louvain. \hypertarget{making-insightful-maps}{% \section{3. Making insightful maps}\label{making-insightful-maps}} +This scanR feature is designed to help users gain a better understanding +of the underlying structures via thematic or co-publication maps. To +help the user, it's important to be able to characterize each of the +communities automatically identified. It is therefore important to label +each community before describing them. + +\hypertarget{llm-trick}{% +\subsection{3.1 LLM trick}\label{llm-trick}} + +To name the communities we use generative AI from Mistral AI +(`open-mistral-nemo' model). The names are obtained from the main themes +of the publications collected for each community. For the time being, we +limit ourselves to the 2000 most relevant publications (in relation to +the user's search) for each community. The following prompt is used: + +\begin{quote} +You have been tasked with naming distinct fields of study for several +communities of research publications. Below are lists of topics and +their weights representing each community. Your goal is to provide a +unique and descriptive name for each field of study that best +encapsulates the essence of the topics within that community. Each +should be unique and as short as possible. If the list of topic is +empty, output a empty string. Output as JSON object with the list number +and the single unique generated name. ``` +\end{quote} + \hypertarget{citation-hot-topics}{% \subsection{3.1 Citation / hot topics}\label{citation-hot-topics}} -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). +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). \hypertarget{custom-perimeter}{% \subsection{3.2 Custom perimeter}\label{custom-perimeter}} diff --git a/doc_network/out.docx b/doc_network/out.docx index 2822a51..06ef07d 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 d677761..7d88f8a 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":"open"},{"t":"Space"},{"t":"Str","c":"access,"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"science,"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"data,"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"}]},{"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":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"French-specific"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"(idref"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"RNSR"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"laboratories)"},{"t":"Space"},{"t":"Str","c":"because"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best"},{"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":"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":"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":"Space"},{"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":"and"},{"t":"Space"},{"t":"Str","c":"thus"},{"t":"Space"},{"t":"Str","c":"usable"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"map."}]},{"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,["elasticsearch-implementation",[],[]],[{"t":"Str","c":"2.2"},{"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":"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,["vosviewer-implementation",[],[]],[{"t":"Str","c":"2.3"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"implementation"}]]},{"t":"Para","c":[{"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":"tool"},{"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":"Header","c":[2,["llm-trick",[],[]],[{"t":"Str","c":"2.4"},{"t":"Space"},{"t":"Str","c":"LLM"},{"t":"Space"},{"t":"Str","c":"trick"}]]},{"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":"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":"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":"scientific"},{"t":"Space"},{"t":"Str","c":"ccommunity"}]},{"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"}]}}}]},"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":"foppiano2020entity"},{"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":"open"},{"t":"Space"},{"t":"Str","c":"access,"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"science,"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"data,"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"}]},{"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":"Space"},{"t":"Str","c":"For"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"affiliations,"},{"t":"Space"},{"t":"Str","c":"French-specific"},{"t":"Space"},{"t":"Str","c":"PID"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"been"},{"t":"Space"},{"t":"Str","c":"used"},{"t":"Space"},{"t":"Str","c":"(idref"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"authors"},{"t":"Space"},{"t":"Str","c":"and"},{"t":"Space"},{"t":"Str","c":"RNSR"},{"t":"Space"},{"t":"Str","c":"for"},{"t":"Space"},{"t":"Str","c":"laboratories)"},{"t":"Space"},{"t":"Str","c":"because"},{"t":"Space"},{"t":"Str","c":"they"},{"t":"Space"},{"t":"Str","c":"have"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"best"},{"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":"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":"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":"Space"},{"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":"and"},{"t":"Space"},{"t":"Str","c":"thus"},{"t":"Space"},{"t":"Str","c":"usable"},{"t":"Space"},{"t":"Str","c":"as"},{"t":"Space"},{"t":"Str","c":"entities"},{"t":"Space"},{"t":"Str","c":"to"},{"t":"Space"},{"t":"Str","c":"map."}]},{"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,["elasticsearch-implementation",[],[]],[{"t":"Str","c":"2.2"},{"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":"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,["vosviewer-implementation",[],[]],[{"t":"Str","c":"2.3"},{"t":"Space"},{"t":"Str","c":"VOSviewer"},{"t":"Space"},{"t":"Str","c":"implementation"}]]},{"t":"Para","c":[{"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":"tool"},{"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":"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":"SoftBreak"},{"t":"Str","c":"To"},{"t":"Space"},{"t":"Str","c":"identify"},{"t":"Space"},{"t":"Str","c":"communities,"},{"t":"Space"},{"t":"Str","c":"we"},{"t":"Space"},{"t":"Str","c":"use"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"method."},{"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":"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":"SoftBreak"},{"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":"SoftBreak"},{"t":"Str","c":"Clusters"},{"t":"Space"},{"t":"Str","c":"are"},{"t":"Space"},{"t":"Str","c":"computed"},{"t":"Space"},{"t":"Str","c":"with"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"Louvain"},{"t":"Space"},{"t":"Str","c":"algorithm,"},{"t":"Space"},{"t":"Str","c":"from"},{"t":"Space"},{"t":"Str","c":"the"},{"t":"Space"},{"t":"Str","c":"open"},{"t":"Space"},{"t":"Str","c":"source"},{"t":"Space"},{"t":"Str","c":"javascript"},{"t":"Space"},{"t":"Str","c":"library"},{"t":"Space"},{"t":"Str","c":"graphology-communities-louvain."}]},{"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":"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":"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":"scientific"},{"t":"Space"},{"t":"Str","c":"ccommunity"}]},{"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"}]}}}]},"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":"foppiano2020entity"},{"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"}]}}}]}}} diff --git a/doc_network/out.epub b/doc_network/out.epub index 2e6e4e1..46c7c5e 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 8513f9c..6e37ffa 100644 --- a/doc_network/out.html +++ b/doc_network/out.html @@ -560,10 +560,16 @@

2.2 Elasticsearch implementation

},

2.3 VOSviewer implementation

We use the open source VOSviewer online tool for network visualization https://github.com/neesjanvaneck/VOSviewer-Online. It is based on the VOSviewer tool which is very popular for network analysis in bibliometric studies (Waltman, Eck, and Noyons 2010).

-

2.4 LLM trick

+

In graph theory, a community corresponds to a set of nodes in a graph that are strongly interconnected with each other, while being less connected with nodes outside this community. Communities can be identified in order to understand the underlying structure and patterns of the graph, as well as to analyze the relationships and interactions between the entities that make it up. To identify communities, we use the Louvain method. This algorithm works by optimizing a modularity measure that evaluates the strength of communities in a graph. More precisely, Louvain seeks to maximize modularity by progressively moving the nodes of a graph into different communities, in an iterative fashion. At each stage, he merges neighboring communities if this leads to an improvement in the overall modularity of the graph. This iterative process continues until no further moves can increase modularity. Clusters are computed with the Louvain algorithm, from the open source javascript library graphology-communities-louvain.

3. Making insightful maps

+

This scanR feature is designed to help users gain a better understanding of the underlying structures via thematic or co-publication maps. To help the user, it’s important to be able to characterize each of the communities automatically identified. It is therefore important to label each community before describing them.

+

3.1 LLM trick

+

To name the communities we use generative AI from Mistral AI (‘open-mistral-nemo’ model). The names are obtained from the main themes of the publications collected for each community. For the time being, we limit ourselves to the 2000 most relevant publications (in relation to the user’s search) for each community. The following prompt is used:

+
+

You have been tasked with naming distinct fields of study for several communities of research publications. Below are lists of topics and their weights representing each community. Your goal is to provide a unique and descriptive name for each field of study that best encapsulates the essence of the topics within that community. Each should be unique and as short as possible. If the list of topic is empty, output a empty string. Output as JSON object with the list number and the single unique generated name. ```

+

3.1 Citation / hot topics

-

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).

+

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.

4. Code availibility

diff --git a/doc_network/out.latex b/doc_network/out.latex index 31e1648..be545b5 100644 --- a/doc_network/out.latex +++ b/doc_network/out.latex @@ -340,19 +340,61 @@ We use the open source VOSviewer online tool for network visualization the VOSviewer tool which is very popular for network analysis in bibliometric studies (Waltman, Eck, and Noyons 2010). -\hypertarget{llm-trick}{% -\subsection{2.4 LLM trick}\label{llm-trick}} +In graph theory, a community corresponds to a set of nodes in a graph +that are strongly interconnected with each other, while being less +connected with nodes outside this community. Communities can be +identified in order to understand the underlying structure and patterns +of the graph, as well as to analyze the relationships and interactions +between the entities that make it up. To identify communities, we use +the Louvain method. This algorithm works by optimizing a modularity +measure that evaluates the strength of communities in a graph. More +precisely, Louvain seeks to maximize modularity by progressively moving +the nodes of a graph into different communities, in an iterative +fashion. At each stage, he merges neighboring communities if this leads +to an improvement in the overall modularity of the graph. This iterative +process continues until no further moves can increase modularity. +Clusters are computed with the Louvain algorithm, from the open source +javascript library graphology-communities-louvain. \hypertarget{making-insightful-maps}{% \section{3. Making insightful maps}\label{making-insightful-maps}} +This scanR feature is designed to help users gain a better understanding +of the underlying structures via thematic or co-publication maps. To +help the user, it's important to be able to characterize each of the +communities automatically identified. It is therefore important to label +each community before describing them. + +\hypertarget{llm-trick}{% +\subsection{3.1 LLM trick}\label{llm-trick}} + +To name the communities we use generative AI from Mistral AI +(`open-mistral-nemo' model). The names are obtained from the main themes +of the publications collected for each community. For the time being, we +limit ourselves to the 2000 most relevant publications (in relation to +the user's search) for each community. The following prompt is used: + +\begin{quote} +You have been tasked with naming distinct fields of study for several +communities of research publications. Below are lists of topics and +their weights representing each community. Your goal is to provide a +unique and descriptive name for each field of study that best +encapsulates the essence of the topics within that community. Each +should be unique and as short as possible. If the list of topic is +empty, output a empty string. Output as JSON object with the list number +and the single unique generated name. ``` +\end{quote} + \hypertarget{citation-hot-topics}{% \subsection{3.1 Citation / hot topics}\label{citation-hot-topics}} -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). +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). \hypertarget{custom-perimeter}{% \subsection{3.2 Custom perimeter}\label{custom-perimeter}} diff --git a/doc_network/out.odt b/doc_network/out.odt index b428d73..1c2ec9e 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 383203a..ef7b7b5 100644 Binary files a/doc_network/out.pdf and b/doc_network/out.pdf differ