### README (README.md)
[](https://github.com/jacomyal/sigma.js/actions)
**[Website](https://www.sigmajs.org/)** | **[Documentation](https://www.sigmajs.org/docs)** | **[Storybook](https://www.sigmajs.org/storybook)** | Mastodon
> [!NOTE]
> Sigma v4 is now available as an alpha release. See [v4.sigmajs.org](https://v4.sigmajs.org/) for the website, or the [`v4` branch](https://github.com/jacomyal/sigma.js/tree/v4) for the source code.
---
[Sigma.js](https://www.sigmajs.org) is an open-source JavaScript library aimed at visualizing graphs of thousands of nodes and edges using WebGL, mainly developed by [@jacomyal](https://github.com/jacomyal) and [@Yomguithereal](https://github.com/Yomguithereal), and built on top of [graphology](https://graphology.github.io/).
## How to use in your project
To integrate sigma into your project, follow these simple steps:
1. **Installation:** Add `sigma` and `graphology` to your project by running the following command:
```bash
npm install sigma graphology
```
2. **Usage:** Import sigma into your JavaScript or TypeScript file:
```javascript
import Graph from "graphology";
import Sigma from "sigma";
```
Then, create a new `Sigma` instance with your graph data and target container:
```javascript
const graph = new Graph();
graph.addNode("1", { label: "Node 1", x: 0, y: 0, size: 10, color: "blue" });
graph.addNode("2", { label: "Node 2", x: 1, y: 1, size: 20, color: "red" });
graph.addEdge("1", "2", { size: 5, color: "purple" });
const sigmaInstance = new Sigma(graph, document.getElementById("container"));
```
## How to develop locally
To run the [Storybook](https://storybook.js.org/) locally:
```bash
git clone git@github.com:jacomyal/sigma.js.git
cd sigma.js
npm install
npm run start
```
This will open the Storybook in your web browser, which live reloads when you modify the stories or the package sources.
## Resources
- **GitHub Project:** The source code and collaborative development efforts for Sigma.js are hosted on [GitHub](https://github.com/jacomyal/sigma.js).
- **Website:** The official website, [sigmajs.org](https://sigmajs.org), kindly designed by [Robin de Mourat](https://github.com/robindemourat/) from the [Sciences-Po médialab](https://medialab.sciencespo.fr/en/) team, showcases the library's capabilities.
- **Documentation:** A detailed documentation, built with [Docusaurus](https://docusaurus.io/), is available at [sigmajs.org/docs](https://sigmajs.org/docs). It provides extensive guides and API references for users.
- **Storybook:** Interactive examples can be found at [sigmajs.org/storybook](https://sigmajs.org/storybook).
- **Demo:** A comprehensive demo, available at [sigmajs.org/demo](https://sigmajs.org/demo), features a full-featured React-based web application utilizing Sigma.js.
## How to contribute
You can contribute by submitting [issues tickets](http://github.com/jacomyal/sigma.js/issues) and proposing [pull requests](http://github.com/jacomyal/sigma.js/pulls). Make sure that tests and linting pass before submitting any pull request.
You can also browse the related documentation [here](https://github.com/jacomyal/sigma.js/tree/main/CONTRIBUTING.md).
## How to start a new package
Run `npm run createPackage` from the project root. It will:
- Ask you the new package name
- Copy the `packages/template` folder
- Update the new package `package.json` entries (name, description, exports)
- Update various other files (buildable packages list in `tsconfig.json`, Preconstruct compatible packages list in `package.json`...)
---
### CHANGELOG (CHANGELOG.md)
# sigma.js - changelog:
## 3.0.2
### Bug fixes
- [#1517](https://github.com/jacomyal/sigma.js/issues/1517) - Fixing calling `setGraph` with highlighted nodes (thanks to @AeternusSamurai)
- Fixing an issue, with sigma not properly cleaning WebGL contexts in its `kill()` method ([commit](https://github.com/jacomyal/sigma.js/commit/c292888d69cf5d9b111194d554df0cb3a86f4a60))
## 3.0.1
### Bug fix
- [#1500](https://github.com/jacomyal/sigma.js/issues/1500) - Fixing lag on stop dragging (thanks @ouzhou for the report and the research)
## 3.0.0
### Breaking changes
- **Completely rewrites programs API**
- **Renames all existing programs**
- **Restructures sources as a multi-package repository (using [Lerna](https://lerna.js.org/))**
- **Replaces the default node program by `NodeCircleProgram`**
- **Moves the `node.image` renderer as a new package [`@sigma/node-image`](https://www.npmjs.com/package/@sigma/node-image)**
- **Moves `labelRenderer`, `hoverRenderer` and `edgeLabelRenderer` from settings to each renderer**
### Features
- [#1386](https://github.com/jacomyal/sigma.js/issues/1386) Improves `Sigma.kill` method
- [#1382](https://github.com/jacomyal/sigma.js/issues/1382) Handles click/hover nodes and edges with [picking](https://webglfundamentals.org/webgl/lessons/webgl-picking.html) rather than with custom computations
- [#1372](https://github.com/jacomyal/sigma.js/issues/1372) Improves render/refresh lifecycle and APIs
- [#1322](https://github.com/jacomyal/sigma.js/issues/1322) Implements [WebGL instancing](https://developer.mozilla.org/en-US/docs/Web/API/WebGL2RenderingContext/drawArraysInstanced) in programs
- [#1346](https://github.com/jacomyal/sigma.js/issues/1346) Adds documentation in the website
- [#1034](https://github.com/jacomyal/sigma.js/issues/1034) Adds new `Sigma.setCamera` method
- [#1185](https://github.com/jacomyal/sigma.js/issues/1185) Adds new `zoomToSizeRatioFunction` and `itemSizesReference` setting
- [#1231](https://github.com/jacomyal/sigma.js/issues/1231) Adds new [`@sigma/edge-curve`](https://www.npmjs.com/package/@sigma/edge-curve) renderer, as a new package
- Adds new [`@sigma/node-border`](https://www.npmjs.com/package/@sigma/node-border) renderer, as a new package
## 2.4.0
### Features
- [#1289](https://github.com/jacomyal/sigma.js/issues/1289) - Adding `Camera.updateState`
- Program classes given in settings (`nodeProgramClasses`, `edgeProgramClasses`) are now merged with default ones for convenience
- [#1287](https://github.com/jacomyal/sigma.js/pull/1287) - Adding the `hoverNodeProgramClasses` setting so that it is possible to have different programs rendering nodes and their hover
- [#1273](https://github.com/jacomyal/sigma.js/issues/1273) - Adding the `Sigma.setGraph` method to renderers
- Adding renderer generic type to specify graph type (thanks to @lf-)
### Bug fixes
- [#1285](https://github.com/jacomyal/sigma.js/issues/1285) - Fixing label selection when camera is rotated
- [#1206](https://github.com/jacomyal/sigma.js/pull/1206), [#1257](https://github.com/jacomyal/sigma.js/issues/1257) - Fixing `node.image` program (thanks to @kaij and @boogheta)
- [#1286](https://github.com/jacomyal/sigma.js/issues/1286) - Fixing right-click erroneously triggering camera drag events
- [#1242](https://github.com/jacomyal/sigma.js/pull/1242), [#1282](https://github.com/jacomyal/sigma.js/pull/1282) - Fixing multiple issues related to touch captor (thanks to @kaij and @boogheta)
- [#1272](https://github.com/jacomyal/sigma.js/issues/1272) - Fixing quadtree-related stack overflows
- Fixing graph event leak on `Sigma.kill`
- [#1253](https://github.com/jacomyal/sigma.js/issues/1253) - Fixing `edge.fast` program not respecting `hidden`
- Fixing `edge.fast` vert shader not unpacking color correctly
- [#1251](https://github.com/jacomyal/sigma.js/pull/1251) - Fixing alpha value parsing of hex colors (thanks to @kaij)
## 2.3.1
### Feature
- [#1239](https://github.com/jacomyal/sigma.js/pull/1239) - Adds `getContainer` method to public API (thanks to @stefanprobst)
### Bug fixes
- [#1230](https://github.com/jacomyal/sigma.js/pull/1230) - Updates broken link to graphology in README.md (thanks to @alexduhem)
- [#1236](https://github.com/jacomyal/sigma.js/issues/1236) - Fixes `#.preventSigmaDefault` scoping
- [#1237](https://github.com/jacomyal/sigma.js/issues/1237) - Updates `pixelRatio` on resize
- [#1240](https://github.com/jacomyal/sigma.js/issues/1240) - Fixes click events for touch devices
- [#1244](https://github.com/jacomyal/sigma.js/issues/1244) - Stops relying on graphology for types (issue only partially fixed yet)
- [#1249](https://github.com/jacomyal/sigma.js/issues/1249) - Fixes hovered nodes layer not being cleared
## 2.3.0
### Features
- _undocumented_ - Publishes examples to the website
- [#1142](https://github.com/jacomyal/sigma.js/issues/1142) - Improves TypeScript typings for events
- [#1170](https://github.com/jacomyal/sigma.js/issues/1170) - Simplifies and optimizes `multiplyVec` internal function
- [#1196](https://github.com/jacomyal/sigma.js/issues/1196) - Adds new `allowInvalidContainer` to prevent sigma.js from throwing errors when it does not find valid width and/or height
- [#1205](https://github.com/jacomyal/sigma.js/issues/1205) - Adds a new example showcasing sigma's scalability and performances
- [#1215](https://github.com/jacomyal/sigma.js/issues/1215) - (ticket still opened) Improves `animateNodes`
- [#1224](https://github.com/jacomyal/sigma.js/issues/1224) - Adds new internal function `floatArrayColor`
- [#1225](https://github.com/jacomyal/sigma.js/issues/1225) - Adds new `beforeRender` and `resize` events
- [#1227](https://github.com/jacomyal/sigma.js/issues/1227) - Implements `#preventSigmaDefault` for mouse move events
### Bug fixes
- [#1214](https://github.com/jacomyal/sigma.js/issues/1214) - Cleans graph lifecycle events handling
- [#1216](https://github.com/jacomyal/sigma.js/issues/1216) - Fixes CodeSandbox configuration for multiple examples (and the template)
- [#1219](https://github.com/jacomyal/sigma.js/issues/1219) - Fixes hidden / excess renderings from `node.ts` program
- [#1223](https://github.com/jacomyal/sigma.js/issues/1223) - Fixes dynamic constant color in various fragment shaders
- [#1226](https://github.com/jacomyal/sigma.js/issues/1226) - Fixes broken `node.ts` program
## 2.2.0
### Features
- [#1161](https://github.com/jacomyal/sigma.js/issues/1161) - Adds `minZoom` and `maxZoom` settings
- [#1166](https://github.com/jacomyal/sigma.js/issues/1166) - Adds HTML colors support
- [#1167](https://github.com/jacomyal/sigma.js/issues/1167) - Adds events TypeScript types
- [#1176](https://github.com/jacomyal/sigma.js/issues/1176) - Cleans and improves event payloads
- [#1177](https://github.com/jacomyal/sigma.js/issues/1177) - Allows overriding arguments with `#graphToViewport` and `#viewportToGraph`
- [#1182](https://github.com/jacomyal/sigma.js/issues/1182) - Adds cached data (from custom reducers) to custom renderers
- [#1187](https://github.com/jacomyal/sigma.js/issues/1187) - Adds `forceLabel` for nodes and edges
- [#1188](https://github.com/jacomyal/sigma.js/issues/1188) - Drops `graphology-metrics` dependency
### Bug fixes
- _undocumented_ - Updates dependencies
- _undocumented_ - Fixes various bugs with the `node.image` program
- _undocumented_ - Fixes the `build/sigma.js` and `build/sigma.min.js` expositions of sigma
- [#1172](https://github.com/jacomyal/sigma.js/issues/1172) - Fixes labels grid display (changes which node labels are displayed by default)
- [#1192](https://github.com/jacomyal/sigma.js/issues/1192) - Fixes alpha blending for most recent WebGL layers
- [#1193](https://github.com/jacomyal/sigma.js/issues/1193) - Fixes dragging with mouse out of stage
- [#1194](https://github.com/jacomyal/sigma.js/issues/1194) - Fixes camera transitions to `angle: 0`
- [#1195](https://github.com/jacomyal/sigma.js/issues/1195) - Improves edge events handling (thanks to @avenzi)
- [#1199](https://github.com/jacomyal/sigma.js/issues/1199) - Fixes issue with hidden nodes and labels rendering (thanks to @avenzi)
- [#1200](https://github.com/jacomyal/sigma.js/issues/1200) - Fixes issue with node labels `""`
- [#1203](https://github.com/jacomyal/sigma.js/issues/1203) - Fixes examples build process
## 2.1.3
### Bug fixes
- [#1178](https://github.com/jacomyal/sigma.js/issues/1178) - Fixes uncaught error in Firefox when using node.image with images with no size
- [#1180](https://github.com/jacomyal/sigma.js/issues/1180) - Fixes edge events not being fired when edge size not set in the graph
- [#1183](https://github.com/jacomyal/sigma.js/issues/1183) - Moves edge labels layer behind nodes layer
- [#1186](https://github.com/jacomyal/sigma.js/issues/1186) - Fixes hovered nodes when mouse not hover sigma container
## 2.1.2
### Bug fixes
- [#1168](https://github.com/jacomyal/sigma.js/issues/1168) - Fixes hover and click events when mouse is hovering a hidden node
- [#1169](https://github.com/jacomyal/sigma.js/issues/1169) - Fixes x / y values in sigma events when mouse is not hovering the sigma container
- [#1173](https://github.com/jacomyal/sigma.js/issues/1173) - Fixes issue where unused program no longer deallocate back to zero
- [#1175](https://github.com/jacomyal/sigma.js/issues/1175) - Fixes zoom scrolling in a scrolled webpage
## 2.1.1
### Bug fix
- [#1165](https://github.com/jacomyal/sigma.js/issues/1165) - Fixes "ghost hovered nodes" issue
## 2.1.0
### Features
- _undocumented_ - Adds edge events
- _undocumented_ - Cleans and fixes all nodes and edges programs
- [#1153](https://github.com/jacomyal/sigma.js/issues/1153) - Adds double-click and wheel events for nodes and edges, with a new `#preventSigmaDefault()` method
- [#1149](https://github.com/jacomyal/sigma.js/issues/1149) - Graphology (and related libs) update to 0.22.1
- [#1102](https://github.com/jacomyal/sigma.js/issues/1102) - Allows custom node and edge label colors
- [#1150](https://github.com/jacomyal/sigma.js/issues/1150) - Adds public methods to enable implementing a proper PNG export, adds related [`png-export` example](https://codesandbox.io/s/github/jacomyal/sigma.js/tree/main/examples/png-snapshot)
### Bug fixes
- _undocumented_ - Edges thickness rendering is now pixel perfect at camera ratio 1, and no more twice bigger on Retina displays
- _undocumented_ - Cleans some browser warnings
- [#1157](https://github.com/jacomyal/sigma.js/issues/1157) - Fixes unexpected node interaction with zIndex
- [#1148](https://github.com/jacomyal/sigma.js/issues/1148) - Fixes `mousemove` unexpected behaviors
- [#1163](https://github.com/jacomyal/sigma.js/issues/1163) - Implements edge labels ellipsis
## 2.0.0
- Complete rewrite of the library.
---
### CODE OF CONDUCT (CODE_OF_CONDUCT.md)
# Contributor Covenant Code of Conduct
## Our Pledge
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.
## Our Standards
Examples of behavior that contributes to a positive environment for our
community include:
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
- Focusing on what is best not just for us as individuals, but for the
overall community
Examples of unacceptable behavior include:
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.
Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.
## Scope
This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
alexis@ouestware.com.
All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the
reporter of any incident.
## Enforcement Guidelines
Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:
### 1. Correction
**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.
**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.
### 2. Warning
**Community Impact**: A violation through a single incident or series
of actions.
**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or
permanent ban.
### 3. Temporary Ban
**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.
**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.
### 4. Permanent Ban
**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
**Consequence**: A permanent ban from any sort of public interaction within
the community.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.0, available at
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
Community Impact Guidelines were inspired by [Mozilla's code of conduct
enforcement ladder](https://github.com/mozilla/diversity).
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.
---
### CONTRIBUTING (CONTRIBUTING.md)
# Contributor Guide
Thank you for investing your time in contributing to our project!
In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.
## Development Workflow
1. If you are a first-time contributor:
- Go to https://github.com/jacomyal/sigma.js and click on the **fork** button to create your own copy of the project.
- Clone the project to your local computer: `git clone git@github.com:your-username/sigma.js.git`
- Navigate to the folder sigma.js and add the upstream repository: `git remote add upstream git@github.com:jacomyal/sigma.js.git`
- Now, you have remote repositories named:
- `upstream`, which refers to the `sigma.js` repository
- `origin`, which refers to your personal fork
- Next, you need to set up your build environment: `npm install`
2. Develop your contribution:
- Pull the latest changes from upstream
```
git checkout main
git pull upstream main
```
- Create a branch for the feature you want to work on. Since the branch name will appear in the merge message, use a sensible name such as 'bugfix-for-issue-1480': `git checkout -b bugfix-for-issue-1480`
- Commit locally as you progress (`git add` and `git commit`)
3. Test your contribution:
- Run the test suite locally: `npm run test`
4. Submit your contribution:
- Push your changes back to your fork on GitHub: `git push origin bugfix-for-issue-1480`
- Go to GitHub. The new branch will show up with a green Pull Request button, just click it.
5. Review process:
- Every Pull Request (PR) update triggers a set of [continuous integration](https://en.wikipedia.org/wiki/Continuous_integration) services
that check that the code is up to standards and passes all our tests.
These checks must pass before your PR can be merged. If one of the
checks fails, you can find out why by clicking on the "failed" icon (red
cross) and inspecting the build and test log.
- Reviewers (the other developers and interested community members) will
write inline and/or general comments on your PR to help
you improve its implementation, documentation, and style.
It's a friendly conversation from which we all learn and the
overall code quality benefits.Don't let the review
discourage you from contributing, its only aim is to improve the quality
of project, not to criticize. We are, after all, very grateful for the
time you're donating!.
- To update your PR, make your changes on your local repository
and commit. As soon as those changes are pushed up (to the same branch as
before) the PR will update automatically.
> **_NOTE:_** If the PR closes an issue, make sure that GitHub knows to automatically close the issue when the PR is merged.
> For example, if the PR closes issue number 1480, you could use the phrase "Fixes #1480" in the PR description or commit message.
## Divergence from `upstream main`
If GitHub indicates that the branch of your Pull Request can no longer
be merged automatically, merge the main branch into yours :
```
git fetch upstream main
git rebase upstream/main
```
If any conflicts occur, they need to be fixed before continuing.
> **_NOTE:_** Please use **rebase** and not **merge**,
## Bugs
Please report bugs on [GitHub](https://github.com/jacomyal/sigma.js/issues).
---
### Lerna.Json (lerna.json)
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "independent",
"private": false,
"push": false,
"includeMergedTags": true
}
---
### LICENSE (LICENSE.txt)
Copyright (C) 2013-2025, Alexis Jacomy, Guillaume Plique, Benoît Simard https://www.sigmajs.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
---
### Package.Json (package.json)
{
"name": "@sigma/root",
"description": "A JavaScript library aimed at visualizing graphs of thousands of nodes and edges.",
"homepage": "https://www.sigmajs.org",
"bugs": "http://github.com/jacomyal/sigma.js/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"build": "preconstruct build && npm run build-bundle --workspace=sigma",
"prettify": "prettier --write .",
"lint": "eslint .",
"test": "npm run test --workspace=@sigma/test",
"start": "preconstruct dev && npm run start --workspace=@sigma/storybook",
"createPackage": "ts-node bin/create-package.ts",
"postinstall": "preconstruct dev",
"postpublish": "preconstruct dev",
"website:build": "npm run build --workspace=@sigma/website && npm run build --workspace=@sigma/demo && cp -R packages/demo/build packages/website/build/demo && npm run build --workspace=@sigma/storybook && cp -R packages/storybook/storybook-static packages/website/build/storybook",
"prepublishOnly": "npm run test && npm run build && npm run lint"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@preconstruct/cli": "^2.8.10",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"preconstruct": {
"packages": [
"packages/sigma",
"packages/node-border",
"packages/node-image",
"packages/node-piechart",
"packages/node-square",
"packages/edge-curve",
"packages/layer-leaflet",
"packages/layer-maplibre",
"packages/layer-webgl",
"packages/export-image",
"packages/utils"
],
"exports": {
"importConditionDefaultExport": "default"
}
}
}
---
### Tsconfig.Base.Json (tsconfig.base.json)
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": true,
"diagnostics": false,
"emitBOM": false,
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"importsNotUsedAsValues": "remove",
"inlineSourceMap": false,
"inlineSources": false,
"isolatedModules": false,
"jsx": "react",
"lib": ["dom", "dom.iterable", "esnext"],
"listEmittedFiles": false,
"listFiles": false,
"module": "commonjs",
"moduleResolution": "node",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"*": ["@types/*"]
},
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"stripInternal": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"target": "es6"
}
}
---
### Tsconfig.Json (tsconfig.json)
{
"extends": "./tsconfig.base.json",
"files": [],
"references": [
{
"path": "./packages/demo"
},
{
"path": "./packages/test"
},
{
"path": "./packages/storybook"
},
{
"path": "./packages/sigma"
},
{
"path": "./packages/layer-leaflet"
},
{
"path": "./packages/layer-maplibre"
},
{
"path": "./packages/layer-webgl"
},
{
"path": "./packages/node-border"
},
{
"path": "./packages/node-image"
},
{
"path": "./packages/node-piechart"
},
{
"path": "./packages/node-square"
},
{
"path": "./packages/edge-curve"
},
{
"path": "./packages/utils"
},
{
"path": "./packages/export-image"
}
],
"watchOptions": {
"excludeDirectories": ["**/node_modules"]
},
"compilerOptions": {
"noFallthroughCasesInSwitch": false
}
}
---
### .Prettierrc.Json (.prettierrc.json)
{
"trailingComma": "all",
"printWidth": 120,
"importOrder": ["", "^[./]"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderGroupNamespaceSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports"]
}
---
### Packages/Demo/README (packages/demo/README.md)
# Sigma.js full-featured demo
This project aims to provide a full-features "real life" application using sigma.js. It is built using [Vite](https://vitejs.dev/), and uses [react-sigma](https://sim51.github.io/react-sigma/), to interface sigma.js with React.
## Dataset
The dataset has been kindly crafted by the [Sciences-Po médialab](https://medialab.sciencespo.fr/) and [OuestWare](https://www.ouestware.com/en/) teams using [Seealsology](https://densitydesign.github.io/strumentalia-seealsology/). It represents a network of Wikipedia pages, connected by ["See also"](https://en.wikipedia.org/wiki/See_also) links. It then was tagged by hand.
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [localhost:5173](http://localhost:5173) to view it in the browser.
The page will reload if you make edits.\
You will also see any lint errors in the console.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
---
### Packages/Demo/Package.Json (packages/demo/package.json)
{
"name": "@sigma/demo",
"private": true,
"homepage": "/demo",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@react-sigma/core": "^5.0.1",
"@sigma/node-image": ">=3.0.0",
"graphology": "^0.25.4",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-types": "^0.24.8",
"lodash": "^4.17.21",
"react": "^19.0.0",
"react-animate-height": "^3.2.3",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0"
},
"peerDependencies": {
"sigma": ">=3.0.0-beta.33"
},
"devDependencies": {
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-checker": "^0.8.0",
"vite-tsconfig-paths": "^5.1.4"
}
}
---
### Packages/Demo/Tsconfig.Json (packages/demo/tsconfig.json)
{
"extends": "../../tsconfig.base.json",
"compileOnSave": false,
"include": ["src"],
"compilerOptions": {
"jsx": "react-jsx",
"rootDir": "./src",
"outDir": "build",
"declarationDir": null,
"declaration": false,
"noImplicitAny": false
}
}
---
### Packages/Demo/Public/Dataset.Json (packages/demo/public/dataset.json)
{
"nodes": [
{
"key": "cytoscape",
"label": "Cytoscape",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Cytoscape",
"cluster": "0",
"x": 643.82275390625,
"y": -770.3126220703125,
"score": 0.00006909602204225056
},
{
"key": "microsoft excel",
"label": "Microsoft Excel",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Microsoft%20Excel",
"cluster": "1",
"x": -857.2847900390625,
"y": 602.7734375,
"score": 0.0018317394731443256
},
{
"key": "gephi",
"label": "Gephi",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Gephi",
"cluster": "0",
"x": 343.4423828125,
"y": -749.0428466796875,
"score": 0.0010242079745792347
},
{
"key": "microsoft power bi",
"label": "Microsoft Power BI",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Microsoft%20Power%20BI",
"cluster": "1",
"x": -900.3515014648438,
"y": 633.4600830078125,
"score": 0.0000049571249591405295
},
{
"key": "qlik",
"label": "Qlik",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Qlik",
"cluster": "1",
"x": -627.0659790039062,
"y": 459.9796447753906,
"score": 0
},
{
"key": "venn diagram",
"label": "Venn diagram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Venn%20diagram",
"cluster": "3",
"x": -237.4854736328125,
"y": -1150.8712158203125,
"score": 0.007071322614031072
},
{
"key": "radar chart",
"label": "Radar chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Radar%20chart",
"cluster": "4",
"x": 330.8612365722656,
"y": 203.5203857421875,
"score": 0
},
{
"key": "flowchart",
"label": "Flowchart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Flowchart",
"cluster": "5",
"x": -476.044677734375,
"y": 692.1626586914062,
"score": 0.01584614746684067
},
{
"key": "box plot",
"label": "Box plot",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Box%20plot",
"cluster": "6",
"x": 600.8757934570312,
"y": 1116.4998779296875,
"score": 0.004182562905931715
},
{
"key": "treemap",
"label": "Treemap",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Treemap",
"cluster": "7",
"x": -47.31597137451172,
"y": 626.2732543945312,
"score": 0.00013330980758652467
},
{
"key": "line chart",
"label": "Line chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Line%20chart",
"cluster": "8",
"x": 427.3127136230469,
"y": 564.1660766601562,
"score": 0.0008676497465946685
},
{
"key": "network chart",
"label": "Network chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Network%20chart",
"cluster": "8",
"x": 128.4100341796875,
"y": 1197.5357666015625,
"score": 0
},
{
"key": "pareto chart",
"label": "Pareto chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Pareto%20chart",
"cluster": "6",
"x": 777.5546875,
"y": 850.110107421875,
"score": 0.006791135145885246
},
{
"key": "control chart",
"label": "Control chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Control%20chart",
"cluster": "10",
"x": 458.7308044433594,
"y": 1091.70458984375,
"score": 0.004527940052048223
},
{
"key": "run chart",
"label": "Run chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Run%20chart",
"cluster": "8",
"x": 231.94883728027344,
"y": 866.6333618164062,
"score": 0
},
{
"key": "scatter plot",
"label": "Scatter plot",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Scatter%20plot",
"cluster": "8",
"x": 583.4140625,
"y": 789.25634765625,
"score": 0
},
{
"key": "histogram",
"label": "Histogram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Histogram",
"cluster": "6",
"x": 848.766357421875,
"y": 836.5435791015625,
"score": 0.00818393070072517
},
{
"key": "bar chart",
"label": "Bar chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Bar%20chart",
"cluster": "8",
"x": 534.9988403320312,
"y": 1043.3865966796875,
"score": 0.002130763205627607
},
{
"key": "table (information)",
"label": "Table (information)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Table%20%28information%29",
"cluster": "7",
"x": 26.95672035217285,
"y": 233.09812927246094,
"score": 0.00401487359118649
},
{
"key": "mosaic plot",
"label": "Mosaic plot",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Mosaic%20plot",
"cluster": "7",
"x": -216.06298828125,
"y": 647.0496826171875,
"score": 0
},
{
"key": "tree structure",
"label": "Tree structure",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Tree%20structure",
"cluster": "4",
"x": 396.307861328125,
"y": -480.81427001953125,
"score": 0.01282269554695697
},
{
"key": "topic maps",
"label": "Topic maps",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Topic%20maps",
"cluster": "11",
"x": -910.932861328125,
"y": 449.8558044433594,
"score": 0.0014923384377384381
},
{
"key": "semantic network",
"label": "Semantic network",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Semantic%20network",
"cluster": "11",
"x": -675.4869384765625,
"y": -406.92138671875,
"score": 0.02294857488492768
},
{
"key": "sociogram",
"label": "Sociogram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Sociogram",
"cluster": "12",
"x": 484.12945556640625,
"y": -15.758939743041992,
"score": 0.004432159081664743
},
{
"key": "organizational chart",
"label": "Organizational chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Organizational%20chart",
"cluster": "12",
"x": 33.159915924072266,
"y": 330.671875,
"score": 0
},
{
"key": "object-role modeling",
"label": "Object-role modeling",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Object-role%20modeling",
"cluster": "11",
"x": -807.170654296875,
"y": -45.31650161743164,
"score": 0.009309705456285613
},
{
"key": "mind map",
"label": "Mind map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Mind%20map",
"cluster": "13",
"x": -48.011146545410156,
"y": -285.1162109375,
"score": 0.007887202121152629
},
{
"key": "issue tree",
"label": "Issue tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Issue%20tree",
"cluster": "14",
"x": 265.8011779785156,
"y": 398.28131103515625,
"score": 0.001831348650231925
},
{
"key": "issue-based information system",
"label": "Issue-based information system",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Issue-based%20information%20system",
"cluster": "14",
"x": -26.45574188232422,
"y": -66.8399658203125,
"score": 0.010124206482050582
},
{
"key": "dendrogram",
"label": "Dendrogram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Dendrogram",
"cluster": "15",
"x": 536.2782592773438,
"y": -755.9024047851562,
"score": 0.001728198449690851
},
{
"key": "graph drawing",
"label": "Graph drawing",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Graph%20drawing",
"cluster": "0",
"x": 338.7585144042969,
"y": -795.7013549804688,
"score": 0
},
{
"key": "hyperbolic tree",
"label": "Hyperbolic tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Hyperbolic%20tree",
"cluster": "4",
"x": 804.0816650390625,
"y": -315.2249755859375,
"score": 0.0016892239172192722
},
{
"key": "decision tree",
"label": "Decision tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Decision%20tree",
"cluster": "16",
"x": 77.14590454101562,
"y": -23.381113052368164,
"score": 0.024013165654432657
},
{
"key": "conceptual graph",
"label": "Conceptual graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Conceptual%20graph",
"cluster": "3",
"x": -475.8210754394531,
"y": -624.5569458007812,
"score": 0.016546673196177822
},
{
"key": "concept map",
"label": "Concept map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Concept%20map",
"cluster": "11",
"x": -703.615478515625,
"y": -224.4598846435547,
"score": 0
},
{
"key": "cognitive map",
"label": "Cognitive map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20map",
"cluster": "17",
"x": 679.1165161132812,
"y": 94.37969970703125,
"score": 0.004329984537894845
},
{
"key": "cladistics",
"label": "Cladistics",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Cladistics",
"cluster": "15",
"x": 635.1257934570312,
"y": -818.5034790039062,
"score": 0.014021129902730895
},
{
"key": "argument map",
"label": "Argument map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Argument%20map",
"cluster": "14",
"x": -77.0009536743164,
"y": -261.25689697265625,
"score": 0.018709398747628874
},
{
"key": "argument technology",
"label": "Argument technology",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Argument%20technology",
"cluster": "14",
"x": -126.40925598144531,
"y": -357.4993591308594,
"score": 0
},
{
"key": "argumentation framework",
"label": "Argumentation framework",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Argumentation%20framework",
"cluster": "14",
"x": -161.99148559570312,
"y": -519.1444702148438,
"score": 0.0029248393536956767
},
{
"key": "argumentation scheme",
"label": "Argumentation scheme",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Argumentation%20scheme",
"cluster": "14",
"x": 252.83218383789062,
"y": 435.0225830078125,
"score": 0.0008077899689775658
},
{
"key": "bayesian network",
"label": "Bayesian network",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Bayesian%20network",
"cluster": "18",
"x": 352.8931884765625,
"y": -30.181875228881836,
"score": 0.03415176824171303
},
{
"key": "dialogue mapping",
"label": "Dialogue mapping",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Dialogue%20mapping",
"cluster": "14",
"x": 41.850669860839844,
"y": -110.37294006347656,
"score": 0.011078995724305082
},
{
"key": "flow (policy debate)",
"label": "Flow (policy debate)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Flow%20%28policy%20debate%29",
"cluster": "14",
"x": -94.31243133544922,
"y": -289.2084045410156,
"score": 0
},
{
"key": "informal fallacy",
"label": "Informal fallacy",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Informal%20fallacy",
"cluster": "14",
"x": 37.87177276611328,
"y": -339.2242736816406,
"score": 0.00018498260920536065
},
{
"key": "logic and dialectic",
"label": "Logic and dialectic",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Logic%20and%20dialectic",
"cluster": "14",
"x": -70.99295043945312,
"y": -503.11273193359375,
"score": 0.0002646249575517496
},
{
"key": "logic of argumentation",
"label": "Logic of argumentation",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Logic%20of%20argumentation",
"cluster": "14",
"x": -86.10369110107422,
"y": -496.8826599121094,
"score": 0.00020819317444045873
},
{
"key": "natural deduction",
"label": "Natural deduction",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Natural%20deduction",
"cluster": "14",
"x": -277.50994873046875,
"y": -616.25146484375,
"score": 0.0015530343269026423
},
{
"key": "practical arguments",
"label": "Practical arguments",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Practical%20arguments",
"cluster": "14",
"x": -102.90691375732422,
"y": -510.39715576171875,
"score": 0.0006441744391927475
},
{
"key": "rhetorical structure theory",
"label": "Rhetorical structure theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Rhetorical%20structure%20theory",
"cluster": "14",
"x": -254.94761657714844,
"y": -263.9010009765625,
"score": 0.0007035242527660784
},
{
"key": "semantic tableau",
"label": "Semantic tableau",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20tableau",
"cluster": "14",
"x": -224.5263214111328,
"y": -553.0567016601562,
"score": 0.00009424027510621452
},
{
"key": "bioinformatics",
"label": "Bioinformatics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Bioinformatics",
"cluster": "15",
"x": 658.8048706054688,
"y": -643.3179931640625,
"score": 0.01821204533179773
},
{
"key": "biomathematics",
"label": "Biomathematics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Biomathematics",
"cluster": "15",
"x": 828.9928588867188,
"y": -452.6299133300781,
"score": 0.005368314648936528
},
{
"key": "coalescent theory",
"label": "Coalescent theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Coalescent%20theory",
"cluster": "15",
"x": 767.1087036132812,
"y": -743.3150634765625,
"score": 0
},
{
"key": "common descent",
"label": "Common descent",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Common%20descent",
"cluster": "15",
"x": 660.1932373046875,
"y": -949.0615234375,
"score": 0.0001598866394411984
},
{
"key": "glossary of scientific naming",
"label": "Glossary of scientific naming",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Glossary%20of%20scientific%20naming",
"cluster": "15",
"x": 610.0006103515625,
"y": -932.854248046875,
"score": 0.0018040231794235473
},
{
"key": "language family",
"label": "Language family",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Language%20family",
"cluster": "19",
"x": 496.6799621582031,
"y": -1091.396240234375,
"score": 0.008996244358047963
},
{
"key": "phylogenetic network",
"label": "Phylogenetic network",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Phylogenetic%20network",
"cluster": "15",
"x": 725.3146362304688,
"y": -850.9909057617188,
"score": 0
},
{
"key": "scientific classification",
"label": "Scientific classification",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Scientific%20classification",
"cluster": "15",
"x": 519.0574340820312,
"y": -829.2457275390625,
"score": 0.003850595544769641
},
{
"key": "subclade",
"label": "Subclade",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Subclade",
"cluster": "15",
"x": 723.3982543945312,
"y": -907.066162109375,
"score": 0.00023239220950615761
},
{
"key": "systematics",
"label": "Systematics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Systematics",
"cluster": "15",
"x": 551.040771484375,
"y": -684.6061401367188,
"score": 0.007052832035228139
},
{
"key": "three-taxon analysis",
"label": "Three-taxon analysis",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Three-taxon%20analysis",
"cluster": "15",
"x": 677.3460083007812,
"y": -861.2525024414062,
"score": 0
},
{
"key": "tree model",
"label": "Tree model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Tree%20model",
"cluster": "19",
"x": 489.556884765625,
"y": -1068.211181640625,
"score": 0.0010120088005887815
},
{
"key": "cognitive geography",
"label": "Cognitive geography",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20geography",
"cluster": "18",
"x": 426.025390625,
"y": 328.4589538574219,
"score": 0.0006151236604467582
},
{
"key": "fuzzy cognitive map",
"label": "Fuzzy cognitive map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Fuzzy%20cognitive%20map",
"cluster": "17",
"x": 629.9107666015625,
"y": 129.70657348632812,
"score": 0.0007484619024323138
},
{
"key": "motion perception",
"label": "Motion perception",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Motion%20perception",
"cluster": "17",
"x": 1172.5955810546875,
"y": 275.5877380371094,
"score": 0.0032502597718893607
},
{
"key": "repertory grid",
"label": "Repertory grid",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Repertory%20grid",
"cluster": "20",
"x": -83.24153900146484,
"y": -338.01910400390625,
"score": 0.006250994475848417
},
{
"key": "alphabet of human thought",
"label": "Alphabet of human thought",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Alphabet%20of%20human%20thought",
"cluster": "11",
"x": -623.0442504882812,
"y": -486.6029968261719,
"score": 0.0015020515862330388
},
{
"key": "chunking (psychology)",
"label": "Chunking (psychology)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Chunking%20%28psychology%29",
"cluster": "21",
"x": -471.457763671875,
"y": -568.8685302734375,
"score": 0.004866983827236221
},
{
"key": "resource description framework",
"label": "Resource Description Framework",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Resource%20Description%20Framework",
"cluster": "11",
"x": -842.5576782226562,
"y": -229.8006591796875,
"score": 0.025971659653706878
},
{
"key": "sparql",
"label": "SPARQL",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/SPARQL",
"cluster": "11",
"x": -790.0882568359375,
"y": -583.29541015625,
"score": 0.0006707967423604117
},
{
"key": "abstract semantic graph",
"label": "Abstract semantic graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Abstract%20semantic%20graph",
"cluster": "5",
"x": -709.9312744140625,
"y": -198.11097717285156,
"score": 0.003233840402677494
},
{
"key": "cmaptools",
"label": "CmapTools",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/CmapTools",
"cluster": "11",
"x": -707.029052734375,
"y": -473.86700439453125,
"score": 0
},
{
"key": "network diagram",
"label": "Network diagram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Network%20diagram",
"cluster": "11",
"x": -697.0083618164062,
"y": -471.2865295410156,
"score": 0
},
{
"key": "ontology (information science)",
"label": "Ontology (information science)",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Ontology%20%28information%20science%29",
"cluster": "11",
"x": -747.0429077148438,
"y": -196.23089599609375,
"score": 0.013788094782959398
},
{
"key": "semantic lexicon",
"label": "Semantic lexicon",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20lexicon",
"cluster": "11",
"x": -617.2353515625,
"y": -375.40704345703125,
"score": 0.00026242067012252217
},
{
"key": "semantic similarity network",
"label": "Semantic similarity network",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20similarity%20network",
"cluster": "11",
"x": -562.7909545898438,
"y": -468.2868347167969,
"score": 0
},
{
"key": "semantic neural network",
"label": "Semantic neural network",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20neural%20network",
"cluster": "11",
"x": -717.395751953125,
"y": -470.8447570800781,
"score": 0
},
{
"key": "semeval",
"label": "SemEval",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/SemEval",
"cluster": "11",
"x": -865.1612548828125,
"y": -296.4136047363281,
"score": 0.0005222645900929032
},
{
"key": "semantic analysis (computational)",
"label": "Semantic analysis (computational)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20analysis%20%28computational%29",
"cluster": "11",
"x": -791.0706787109375,
"y": -238.4806365966797,
"score": 0.0009648148717646707
},
{
"key": "sparse distributed memory",
"label": "Sparse distributed memory",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Sparse%20distributed%20memory",
"cluster": "18",
"x": -55.231285095214844,
"y": -355.26177978515625,
"score": 0
},
{
"key": "taxonomy (general)",
"label": "Taxonomy (general)",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Taxonomy%20%28general%29",
"cluster": "11",
"x": -286.0745849609375,
"y": -460.0727233886719,
"score": 0.01849228078475779
},
{
"key": "unified medical language system",
"label": "Unified Medical Language System",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Unified%20Medical%20Language%20System",
"cluster": "22",
"x": -565.118408203125,
"y": -576.4724731445312,
"score": 0.00034029327622420733
},
{
"key": "cognition network technology",
"label": "Cognition Network Technology",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Cognition%20Network%20Technology",
"cluster": "11",
"x": -701.9165649414062,
"y": -460.1814880371094,
"score": 0
},
{
"key": "lexipedia",
"label": "Lexipedia",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Lexipedia",
"cluster": "11",
"x": -711.7052001953125,
"y": -460.4881591796875,
"score": 0
},
{
"key": "opencog",
"label": "OpenCog",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/OpenCog",
"cluster": "11",
"x": -715.8640747070312,
"y": -493.5049133300781,
"score": 0.0008456220201094614
},
{
"key": "open mind common sense",
"label": "Open Mind Common Sense",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Open%20Mind%20Common%20Sense",
"cluster": "11",
"x": -924.6856689453125,
"y": -355.55181884765625,
"score": 0.0023321444317702077
},
{
"key": "schema.org",
"label": "Schema.org",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Schema.org",
"cluster": "11",
"x": -846.623046875,
"y": -197.66310119628906,
"score": 0
},
{
"key": "snomed ct",
"label": "SNOMED CT",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/SNOMED%20CT",
"cluster": "22",
"x": -515.9702758789062,
"y": -649.560546875,
"score": 0.003600203402059478
},
{
"key": "universal networking language",
"label": "Universal Networking Language",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Universal%20Networking%20Language",
"cluster": "11",
"x": -829.3536987304688,
"y": -278.9306335449219,
"score": 0.002090073039330873
},
{
"key": "wikidata",
"label": "Wikidata",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Wikidata",
"cluster": "11",
"x": -855.0623168945312,
"y": -398.7132263183594,
"score": 0.0017145817111678021
},
{
"key": "freebase (database)",
"label": "Freebase (database)",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Freebase%20%28database%29",
"cluster": "11",
"x": -929.4356689453125,
"y": -396.67376708984375,
"score": 0.0038487242945481562
},
{
"key": "sparql query results xml format",
"label": "SPARQL Query Results XML Format",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/SPARQL%20Query%20Results%20XML%20Format",
"cluster": "11",
"x": -840.5682373046875,
"y": -626.5060424804688,
"score": 0
},
{
"key": "rdfa",
"label": "RDFa",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/RDFa",
"cluster": "21",
"x": -842.9970092773438,
"y": 133.79840087890625,
"score": 0.0003232369320399352
},
{
"key": "json-ld",
"label": "JSON-LD",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/JSON-LD",
"cluster": "11",
"x": -924.232666015625,
"y": -262.08056640625,
"score": 0
},
{
"key": "notation3",
"label": "Notation3",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Notation3",
"cluster": "11",
"x": -918.1101684570312,
"y": -268.0645751953125,
"score": 0
},
{
"key": "entity–attribute–value model",
"label": "Entity–attribute–value model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value%20model",
"cluster": "11",
"x": -1004.7867431640625,
"y": -56.98497009277344,
"score": 0.0004002538527626173
},
{
"key": "graph theory",
"label": "Graph theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Graph%20theory",
"cluster": "0",
"x": 144.78919982910156,
"y": -839.4916381835938,
"score": 0.026377687709942383
},
{
"key": "tag (metadata)",
"label": "Tag (metadata)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Tag%20%28metadata%29",
"cluster": "11",
"x": -632.1871948242188,
"y": -86.4168930053711,
"score": 0.004148488943511288
},
{
"key": "scicrunch",
"label": "SciCrunch",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/SciCrunch",
"cluster": "11",
"x": -871.8386840820312,
"y": -213.283203125,
"score": 0.000095803398040257
},
{
"key": "semantic technology",
"label": "Semantic technology",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Semantic%20technology",
"cluster": "11",
"x": -894.3898315429688,
"y": -162.6959991455078,
"score": 0.0061972116669557825
},
{
"key": "associative model of data",
"label": "Associative model of data",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Associative%20model%20of%20data",
"cluster": "11",
"x": -972.6192016601562,
"y": 155.2799072265625,
"score": 0.0009083069994413123
},
{
"key": "business intelligence 2.0",
"label": "Business Intelligence 2.0",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Business%20Intelligence%202.0",
"cluster": "11",
"x": -725.814453125,
"y": 78.32054901123047,
"score": 0.0023852623482935394
},
{
"key": "data portability",
"label": "Data portability",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Data%20portability",
"cluster": "11",
"x": -932.8716430664062,
"y": -266.43719482421875,
"score": 0
},
{
"key": "folksonomy",
"label": "Folksonomy",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Folksonomy",
"cluster": "11",
"x": -430.01275634765625,
"y": -253.80511474609375,
"score": 0.00903214155183702
},
{
"key": "lsid",
"label": "LSID",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/LSID",
"cluster": "11",
"x": -893.6924438476562,
"y": -213.79568481445312,
"score": 0.0004353327368013828
},
{
"key": "swoogle",
"label": "Swoogle",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Swoogle",
"cluster": "11",
"x": -951.0037231445312,
"y": -201.06761169433594,
"score": 0.0002597811302235445
},
{
"key": "void",
"label": "VoID",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/VoID",
"cluster": "11",
"x": -971.4874267578125,
"y": -182.17935180664062,
"score": 0
},
{
"key": "language acquisition",
"label": "Language acquisition",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Language%20acquisition",
"cluster": "19",
"x": -0.9998851418495178,
"y": -882.901123046875,
"score": 0.0004615138730214264
},
{
"key": "flow (psychology)",
"label": "Flow (psychology)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Flow%20%28psychology%29",
"cluster": "21",
"x": -38.28602600097656,
"y": -17.09149169921875,
"score": 0.00029537892476822977
},
{
"key": "forgetting curve",
"label": "Forgetting curve",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Forgetting%20curve",
"cluster": "21",
"x": -427.970703125,
"y": -414.4608459472656,
"score": 0
},
{
"key": "generalization (learning)",
"label": "Generalization (learning)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Generalization%20%28learning%29",
"cluster": "21",
"x": -500.75921630859375,
"y": -610.4454956054688,
"score": 0
},
{
"key": "knowledge representation and reasoning",
"label": "Knowledge representation and reasoning",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20representation%20and%20reasoning",
"cluster": "21",
"x": -476.34344482421875,
"y": -422.58416748046875,
"score": 0.00818075440257721
},
{
"key": "memory",
"label": "Memory",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Memory",
"cluster": "21",
"x": -550.5669555664062,
"y": -611.5762939453125,
"score": 0.0000922964714159353
},
{
"key": "merge (linguistics)",
"label": "Merge (linguistics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Merge%20%28linguistics%29",
"cluster": "21",
"x": -504.92333984375,
"y": -601.8806762695312,
"score": 0
},
{
"key": "method of loci",
"label": "Method of loci",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Method%20of%20loci",
"cluster": "21",
"x": -573.13427734375,
"y": -661.1122436523438,
"score": 0
},
{
"key": "mnemonic",
"label": "Mnemonic",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Mnemonic",
"cluster": "21",
"x": -589.94140625,
"y": -681.6317749023438,
"score": 0.00007913403771406845
},
{
"key": "algebraic logic",
"label": "Algebraic logic",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Algebraic%20logic",
"cluster": "3",
"x": -700.435546875,
"y": -795.292724609375,
"score": 0.00016231446702861122
},
{
"key": "language of thought hypothesis",
"label": "Language of thought hypothesis",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Language%20of%20thought%20hypothesis",
"cluster": "19",
"x": -295.2800598144531,
"y": -771.2247314453125,
"score": 0.0002577585913602634
},
{
"key": "natural semantic metalanguage",
"label": "Natural semantic metalanguage",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Natural%20semantic%20metalanguage",
"cluster": "11",
"x": -647.8865356445312,
"y": -346.5642395019531,
"score": 0.0015117620751910312
},
{
"key": "philosophical language",
"label": "Philosophical language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Philosophical%20language",
"cluster": "11",
"x": -574.2839965820312,
"y": -493.2090148925781,
"score": 0.0004692635330238385
},
{
"key": "upper ontology",
"label": "Upper ontology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Upper%20ontology",
"cluster": "11",
"x": -674.0167846679688,
"y": -239.4491424560547,
"score": 0.0027976343609007206
},
{
"key": "authority control",
"label": "Authority control",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Authority%20control",
"cluster": "11",
"x": -822.5309448242188,
"y": -127.29187774658203,
"score": 0
},
{
"key": "formal ontology",
"label": "Formal ontology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Formal%20ontology",
"cluster": "11",
"x": -726.9469604492188,
"y": -293.3465881347656,
"score": 0.0001625247713546905
},
{
"key": "library classification",
"label": "Library classification",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Library%20classification",
"cluster": "15",
"x": -308.6916198730469,
"y": -442.2139587402344,
"score": 0
},
{
"key": "process ontology",
"label": "Process ontology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Process%20ontology",
"cluster": "11",
"x": -402.7458801269531,
"y": 171.14451599121094,
"score": 0
},
{
"key": "semantic interoperability",
"label": "Semantic interoperability",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Semantic%20interoperability",
"cluster": "11",
"x": -914.43359375,
"y": 77.43998718261719,
"score": 0.002211746710645076
},
{
"key": "metalanguage",
"label": "Metalanguage",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Metalanguage",
"cluster": "11",
"x": -498.27093505859375,
"y": -361.5093994140625,
"score": 0.0004533172352591103
},
{
"key": "universal grammar",
"label": "Universal grammar",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Universal%20grammar",
"cluster": "19",
"x": 7.053833484649658,
"y": -930.2678833007812,
"score": 0
},
{
"key": "world view",
"label": "World view",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/World%20view",
"cluster": "19",
"x": -218.56655883789062,
"y": -771.2120971679688,
"score": 0
},
{
"key": "boolean algebra",
"label": "Boolean algebra",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Boolean%20algebra",
"cluster": "3",
"x": -649.5697631835938,
"y": -993.843994140625,
"score": 0
},
{
"key": "codd's theorem",
"label": "Codd's theorem",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Codd%27s%20theorem",
"cluster": "3",
"x": -752.46630859375,
"y": -735.5181274414062,
"score": 0
},
{
"key": "mnemonic major system",
"label": "Mnemonic major system",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Mnemonic%20major%20system",
"cluster": "21",
"x": -613.9334106445312,
"y": -693.0994262695312,
"score": 0
},
{
"key": "belief revision",
"label": "Belief revision",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Belief%20revision",
"cluster": "21",
"x": -320.6951904296875,
"y": -377.97650146484375,
"score": 0
},
{
"key": "commonsense knowledge base",
"label": "Commonsense knowledge base",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Commonsense%20knowledge%20base",
"cluster": "21",
"x": -493.8531188964844,
"y": -445.00018310546875,
"score": 0
},
{
"key": "datr",
"label": "DATR",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/DATR",
"cluster": "21",
"x": -495.4014587402344,
"y": -456.7448425292969,
"score": 0
},
{
"key": "logico-linguistic modeling",
"label": "Logico-linguistic modeling",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Logico-linguistic%20modeling",
"cluster": "21",
"x": -484.49884033203125,
"y": -453.5343322753906,
"score": 0
},
{
"key": "personal knowledge base",
"label": "Personal knowledge base",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Personal%20knowledge%20base",
"cluster": "14",
"x": -284.18359375,
"y": -120.49275970458984,
"score": 0.015741458409185748
},
{
"key": "knowledge graph",
"label": "Knowledge graph",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20graph",
"cluster": "11",
"x": -759.041259765625,
"y": -285.4691162109375,
"score": 0.00037975842884294196
},
{
"key": "knowledge management",
"label": "Knowledge management",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20management",
"cluster": "21",
"x": -388.5101623535156,
"y": 30.686166763305664,
"score": 0.008861628698140528
},
{
"key": "valuation-based system",
"label": "Valuation-based system",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Valuation-based%20system",
"cluster": "21",
"x": -503.8725280761719,
"y": -448.6062927246094,
"score": 0
},
{
"key": "imagination",
"label": "Imagination",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Imagination",
"cluster": "21",
"x": 71.3614273071289,
"y": -137.79916381835938,
"score": 0
},
{
"key": "ovsiankina effect",
"label": "Ovsiankina effect",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Ovsiankina%20effect",
"cluster": "21",
"x": 74.63014221191406,
"y": 505.1304931640625,
"score": 0
},
{
"key": "wu wei",
"label": "Wu wei",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Wu%20wei",
"cluster": "21",
"x": 170.06521606445312,
"y": 127.3057632446289,
"score": 0
},
{
"key": "evolutionary linguistics",
"label": "Evolutionary linguistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Evolutionary%20linguistics",
"cluster": "19",
"x": 302.83514404296875,
"y": -1021.9174194335938,
"score": 0.00011517517628958691
},
{
"key": "evolutionary psychology of language",
"label": "Evolutionary psychology of language",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Evolutionary%20psychology%20of%20language",
"cluster": "19",
"x": 204.8646240234375,
"y": -1000.9155883789062,
"score": 0
},
{
"key": "foxp2",
"label": "FOXP2",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/FOXP2",
"cluster": "19",
"x": 178.49044799804688,
"y": -941.7884521484375,
"score": 0
},
{
"key": "origin of language",
"label": "Origin of language",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Origin%20of%20language",
"cluster": "19",
"x": 288.3348083496094,
"y": -943.5899658203125,
"score": 0.0007183779982126437
},
{
"key": "semantic translation",
"label": "Semantic translation",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20translation",
"cluster": "11",
"x": -1023.00537109375,
"y": -21.59303092956543,
"score": 0.000517135176520443
},
{
"key": "semantic unification",
"label": "Semantic unification",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20unification",
"cluster": "11",
"x": -1086.5980224609375,
"y": -89.59039306640625,
"score": 0.0007015673678323802
},
{
"key": "ontology (computer science)",
"label": "Ontology (computer science)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Ontology%20%28computer%20science%29",
"cluster": "11",
"x": -773.9939575195312,
"y": -175.59030151367188,
"score": 0.006193785807766692
},
{
"key": "darpa agent markup language",
"label": "DARPA Agent Markup Language",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/DARPA%20Agent%20Markup%20Language",
"cluster": "11",
"x": -1019.974365234375,
"y": -350.868408203125,
"score": 0
},
{
"key": "web ontology language",
"label": "Web Ontology Language",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Web%20Ontology%20Language",
"cluster": "11",
"x": -911.4971923828125,
"y": -28.525930404663086,
"score": 0.004396283897128895
},
{
"key": "semantic web",
"label": "Semantic Web",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Semantic%20Web",
"cluster": "11",
"x": -925.17236328125,
"y": -117.87979888916016,
"score": 0.015146260330629708
},
{
"key": "collective intelligence",
"label": "Collective intelligence",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Collective%20intelligence",
"cluster": "20",
"x": -165.6166534423828,
"y": -142.6343536376953,
"score": 0
},
{
"key": "enterprise bookmarking",
"label": "Enterprise bookmarking",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Enterprise%20bookmarking",
"cluster": "23",
"x": -432.62164306640625,
"y": -111.2158432006836,
"score": 0.005025707901539079
},
{
"key": "faceted classification",
"label": "Faceted classification",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Faceted%20classification",
"cluster": "11",
"x": -331.2969055175781,
"y": 48.29027557373047,
"score": 0
},
{
"key": "hierarchical clustering",
"label": "Hierarchical clustering",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20clustering",
"cluster": "4",
"x": 580.143310546875,
"y": -513.3453979492188,
"score": 0.02034966284199348
},
{
"key": "semantic similarity",
"label": "Semantic similarity",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20similarity",
"cluster": "11",
"x": -568.1552124023438,
"y": -92.3887710571289,
"score": 0
},
{
"key": "thesaurus",
"label": "Thesaurus",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Thesaurus",
"cluster": "11",
"x": -460.56292724609375,
"y": -234.09898376464844,
"score": 0
},
{
"key": "weak ontology",
"label": "Weak ontology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Weak%20ontology",
"cluster": "11",
"x": -659.6484375,
"y": -230.6053009033203,
"score": 0
},
{
"key": "linked data",
"label": "Linked Data",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Linked%20Data",
"cluster": "11",
"x": -950.0712280273438,
"y": -90.6455078125,
"score": 0.0004654952256748535
},
{
"key": "ontology alignment",
"label": "Ontology alignment",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Ontology%20alignment",
"cluster": "11",
"x": -1023.9115600585938,
"y": -82.35829162597656,
"score": 0.0013050311543932555
},
{
"key": "relationship extraction",
"label": "Relationship extraction",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Relationship%20extraction",
"cluster": "11",
"x": -647.7926635742188,
"y": 108.23262786865234,
"score": 0
},
{
"key": "semantic grid",
"label": "Semantic grid",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20grid",
"cluster": "11",
"x": -768.1111450195312,
"y": -74.05943298339844,
"score": 0.0002438726619144268
},
{
"key": "semantic web rule language",
"label": "Semantic Web Rule Language",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20Web%20Rule%20Language",
"cluster": "11",
"x": -653.3441772460938,
"y": -174.26751708984375,
"score": 0
},
{
"key": "spreadmart",
"label": "Spreadmart",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Spreadmart",
"cluster": "11",
"x": -846.5366821289062,
"y": 372.75830078125,
"score": 0
},
{
"key": "triplestore",
"label": "Triplestore",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Triplestore",
"cluster": "11",
"x": -1059.2547607421875,
"y": 58.725223541259766,
"score": 0
},
{
"key": "attribute-value system",
"label": "Attribute-value system",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Attribute-value%20system",
"cluster": "11",
"x": -941.8338623046875,
"y": 250.4564666748047,
"score": 0
},
{
"key": "metadata",
"label": "Metadata",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Metadata",
"cluster": "11",
"x": -877.3441772460938,
"y": 118.20881652832031,
"score": 0
},
{
"key": "semantic heterogeneity",
"label": "Semantic heterogeneity",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Semantic%20heterogeneity",
"cluster": "11",
"x": -1062.4501953125,
"y": -47.555110931396484,
"score": 0
},
{
"key": "semantic integration",
"label": "Semantic integration",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20integration",
"cluster": "11",
"x": -1055.708984375,
"y": -21.736474990844727,
"score": 0.003061842742018204
},
{
"key": "semantic matching",
"label": "Semantic matching",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Semantic%20matching",
"cluster": "11",
"x": -1014.1257934570312,
"y": -146.5421600341797,
"score": 0
},
{
"key": "expert system",
"label": "Expert system",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Expert%20system",
"cluster": "21",
"x": -619.6608276367188,
"y": -162.21267700195312,
"score": 0
},
{
"key": "human–computer interaction",
"label": "Human–computer interaction",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Human%E2%80%93computer%20interaction",
"cluster": "11",
"x": -593.35302734375,
"y": -0.813096284866333,
"score": 0
},
{
"key": "knowledge transfer",
"label": "Knowledge transfer",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20transfer",
"cluster": "21",
"x": -545.2042236328125,
"y": -27.003341674804688,
"score": 0
},
{
"key": "management information system",
"label": "Management information system",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Management%20information%20system",
"cluster": "7",
"x": -412.3898010253906,
"y": 380.8659973144531,
"score": 0.0070447599877772145
},
{
"key": "subject indexing",
"label": "Subject indexing",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Subject%20indexing",
"cluster": "11",
"x": -654.24462890625,
"y": -141.134521484375,
"score": 0
},
{
"key": "gallery of named graphs",
"label": "Gallery of named graphs",
"tag": "List",
"URL": "https://en.wikipedia.org/wiki/Gallery%20of%20named%20graphs",
"cluster": "0",
"x": 218.6732635498047,
"y": -734.7560424804688,
"score": 0
},
{
"key": "glossary of graph theory",
"label": "Glossary of graph theory",
"tag": "List",
"URL": "https://en.wikipedia.org/wiki/Glossary%20of%20graph%20theory",
"cluster": "0",
"x": 388.5685729980469,
"y": -655.8279418945312,
"score": 0.0003438702405837157
},
{
"key": "algebraic graph theory",
"label": "Algebraic graph theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Algebraic%20graph%20theory",
"cluster": "0",
"x": 228.02835083007812,
"y": -988.830810546875,
"score": 0.00008165350056458872
},
{
"key": "citation graph",
"label": "Citation graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Citation%20graph",
"cluster": "0",
"x": -84.32083892822266,
"y": -137.9530029296875,
"score": 0.00008819636926134623
},
{
"key": "data structure",
"label": "Data structure",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Data%20structure",
"cluster": "4",
"x": 95.36343383789062,
"y": -340.4019470214844,
"score": 0.0015348531672156373
},
{
"key": "dual-phase evolution",
"label": "Dual-phase evolution",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Dual-phase%20evolution",
"cluster": "23",
"x": 557.9822387695312,
"y": -229.10963439941406,
"score": 0
},
{
"key": "entitative graph",
"label": "Entitative graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Entitative%20graph",
"cluster": "3",
"x": -356.9773864746094,
"y": -963.9048461914062,
"score": 0.0005571481305572723
},
{
"key": "existential graph",
"label": "Existential graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Existential%20graph",
"cluster": "3",
"x": -330.99444580078125,
"y": -996.155517578125,
"score": 0.0027082286245061838
},
{
"key": "graph algebra",
"label": "Graph algebra",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Graph%20algebra",
"cluster": "0",
"x": 148.67645263671875,
"y": -901.763671875,
"score": 0
},
{
"key": "graph automorphism",
"label": "Graph automorphism",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Graph%20automorphism",
"cluster": "0",
"x": 193.9133758544922,
"y": -970.962158203125,
"score": 0
},
{
"key": "graph coloring",
"label": "Graph coloring",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Graph%20coloring",
"cluster": "0",
"x": 122.90592193603516,
"y": -920.8076171875,
"score": 0
},
{
"key": "graph database",
"label": "Graph database",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Graph%20database",
"cluster": "7",
"x": -246.09805297851562,
"y": -663.9519653320312,
"score": 0.00028836496421552214
},
{
"key": "graph (data structure)",
"label": "Graph (data structure)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Graph%20%28data%20structure%29",
"cluster": "0",
"x": 8.46218204498291,
"y": -760.5272216796875,
"score": 0.00012777254849138906
},
{
"key": "graph rewriting",
"label": "Graph rewriting",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Graph%20rewriting",
"cluster": "5",
"x": -142.51065063476562,
"y": -547.5338745117188,
"score": 0.004048981217291292
},
{
"key": "graph property",
"label": "Graph property",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Graph%20property",
"cluster": "0",
"x": 199.94528198242188,
"y": -964.14501953125,
"score": 0
},
{
"key": "intersection graph",
"label": "Intersection graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Intersection%20graph",
"cluster": "0",
"x": 141.39031982421875,
"y": -908.7203979492188,
"score": 0
},
{
"key": "knight's tour",
"label": "Knight's Tour",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Knight%27s%20Tour",
"cluster": "0",
"x": 147.06390380859375,
"y": -916.5116577148438,
"score": 0
},
{
"key": "logical graph",
"label": "Logical graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Logical%20graph",
"cluster": "3",
"x": -333.1943664550781,
"y": -1014.9374389648438,
"score": 0.008395215526123193
},
{
"key": "loop (graph theory)",
"label": "Loop (graph theory)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Loop%20%28graph%20theory%29",
"cluster": "0",
"x": 230.75820922851562,
"y": -801.9268188476562,
"score": 0.00007999418160411841
},
{
"key": "network theory",
"label": "Network theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Network%20theory",
"cluster": "23",
"x": 565.5464477539062,
"y": -313.09527587890625,
"score": 0.005150786057953524
},
{
"key": "null graph",
"label": "Null graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Null%20graph",
"cluster": "0",
"x": 277.75640869140625,
"y": -790.2318115234375,
"score": 0
},
{
"key": "percolation",
"label": "Percolation",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Percolation",
"cluster": "23",
"x": 555.105224609375,
"y": -269.66583251953125,
"score": 0.0002635149024042669
},
{
"key": "quantum graph",
"label": "Quantum graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Quantum%20graph",
"cluster": "0",
"x": 143.5575408935547,
"y": -929.2946166992188,
"score": 0
},
{
"key": "semantic networks",
"label": "Semantic networks",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Semantic%20networks",
"cluster": "11",
"x": -645.2720336914062,
"y": -433.6141662597656,
"score": 0.0031743495756569487
},
{
"key": "spectral graph theory",
"label": "Spectral graph theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Spectral%20graph%20theory",
"cluster": "0",
"x": 247.72479248046875,
"y": -955.4554443359375,
"score": 0.00011326443053580646
},
{
"key": "strongly regular graph",
"label": "Strongly regular graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Strongly%20regular%20graph",
"cluster": "0",
"x": 211.5841522216797,
"y": -944.821533203125,
"score": 0
},
{
"key": "symmetric graph",
"label": "Symmetric graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Symmetric%20graph",
"cluster": "0",
"x": 215.30694580078125,
"y": -899.9691772460938,
"score": 0
},
{
"key": "transitive reduction",
"label": "Transitive reduction",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Transitive%20reduction",
"cluster": "4",
"x": 223.14500427246094,
"y": -848.6118774414062,
"score": 0
},
{
"key": "tree (data structure)",
"label": "Tree (data structure)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Tree%20%28data%20structure%29",
"cluster": "4",
"x": 375.03179931640625,
"y": -554.2734375,
"score": 0.007480545127913062
},
{
"key": "bellman–ford algorithm",
"label": "Bellman–Ford algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Bellman%E2%80%93Ford%20algorithm",
"cluster": "0",
"x": 136.70851135253906,
"y": -980.599853515625,
"score": 0
},
{
"key": "borůvka's algorithm",
"label": "Borůvka's algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Bor%C5%AFvka%27s%20algorithm",
"cluster": "0",
"x": 149.03213500976562,
"y": -973.4923706054688,
"score": 0
},
{
"key": "breadth-first search",
"label": "Breadth-first search",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Breadth-first%20search",
"cluster": "0",
"x": 151.68226623535156,
"y": -1090.56982421875,
"score": 0.00007913403771406845
},
{
"key": "depth-first search",
"label": "Depth-first search",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Depth-first%20search",
"cluster": "0",
"x": 142.94589233398438,
"y": -1087.94091796875,
"score": 0.00007913403771406845
},
{
"key": "dijkstra's algorithm",
"label": "Dijkstra's algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Dijkstra%27s%20algorithm",
"cluster": "0",
"x": 144.21620178222656,
"y": -1013.4470825195312,
"score": 9.161683092800978e-7
},
{
"key": "edmonds–karp algorithm",
"label": "Edmonds–Karp algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Edmonds%E2%80%93Karp%20algorithm",
"cluster": "0",
"x": 197.15943908691406,
"y": -885.60693359375,
"score": 0
},
{
"key": "floyd–warshall algorithm",
"label": "Floyd–Warshall algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall%20algorithm",
"cluster": "0",
"x": 138.6576385498047,
"y": -989.224853515625,
"score": 0
},
{
"key": "ford–fulkerson algorithm",
"label": "Ford–Fulkerson algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Ford%E2%80%93Fulkerson%20algorithm",
"cluster": "0",
"x": 296.34466552734375,
"y": -775.94775390625,
"score": 0
},
{
"key": "hopcroft–karp algorithm",
"label": "Hopcroft–Karp algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Hopcroft%E2%80%93Karp%20algorithm",
"cluster": "0",
"x": 208.3922576904297,
"y": -836.5798950195312,
"score": 0.0000621063952801626
},
{
"key": "hungarian algorithm",
"label": "Hungarian algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Hungarian%20algorithm",
"cluster": "0",
"x": 189.7929229736328,
"y": -892.115478515625,
"score": 0
},
{
"key": "kruskal's algorithm",
"label": "Kruskal's algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Kruskal%27s%20algorithm",
"cluster": "0",
"x": 152.76881408691406,
"y": -1001.6660766601562,
"score": 0
},
{
"key": "prim's algorithm",
"label": "Prim's algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Prim%27s%20algorithm",
"cluster": "0",
"x": 170.48452758789062,
"y": -975.9755249023438,
"score": 0.00011980710267787669
},
{
"key": "tarjan's strongly connected components algorithm",
"label": "Tarjan's strongly connected components algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Tarjan%27s%20strongly%20connected%20components%20algorithm",
"cluster": "0",
"x": 125.54205322265625,
"y": -954.9275512695312,
"score": 0
},
{
"key": "topological sorting",
"label": "Topological sorting",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Topological%20sorting",
"cluster": "0",
"x": 117.33892059326172,
"y": -954.7590942382812,
"score": 0
},
{
"key": "geometric graph theory",
"label": "Geometric graph theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Geometric%20graph%20theory",
"cluster": "0",
"x": 296.9145812988281,
"y": -852.4370727539062,
"score": 0.00006717518939355758
},
{
"key": "extremal graph theory",
"label": "Extremal graph theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Extremal%20graph%20theory",
"cluster": "0",
"x": 119.41769409179688,
"y": -1018.818603515625,
"score": 0
},
{
"key": "random graph",
"label": "Random graph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Random%20graph",
"cluster": "23",
"x": 568.1471557617188,
"y": -360.8318786621094,
"score": 0.005327292784487605
},
{
"key": "topological graph theory",
"label": "Topological graph theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Topological%20graph%20theory",
"cluster": "0",
"x": 218.49147033691406,
"y": -1016.6495361328125,
"score": 0.00008247693968146494
},
{
"key": "combinatorics",
"label": "Combinatorics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Combinatorics",
"cluster": "15",
"x": 435.55230712890625,
"y": -850.6735229492188,
"score": 0.0008953729515199642
},
{
"key": "group theory",
"label": "Group theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Group%20theory",
"cluster": "0",
"x": 163.24407958984375,
"y": -918.5950927734375,
"score": 0
},
{
"key": "knot theory",
"label": "Knot theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Knot%20theory",
"cluster": "0",
"x": 61.89107894897461,
"y": -1084.978759765625,
"score": 0
},
{
"key": "ramsey theory",
"label": "Ramsey theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Ramsey%20theory",
"cluster": "0",
"x": 114.66838073730469,
"y": -1012.0784912109375,
"score": 0
},
{
"key": "hypergraph",
"label": "Hypergraph",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Hypergraph",
"cluster": "3",
"x": -34.0966796875,
"y": -700.4102172851562,
"score": 0.0023015537747276466
},
{
"key": "abstract simplicial complex",
"label": "Abstract simplicial complex",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Abstract%20simplicial%20complex",
"cluster": "0",
"x": 139.17201232910156,
"y": -922.0830688476562,
"score": 0
},
{
"key": "noga alon",
"label": "Noga Alon",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Noga%20Alon",
"cluster": "0",
"x": 155.56820678710938,
"y": -910.853515625,
"score": 0
},
{
"key": "john adrian bondy",
"label": "John Adrian Bondy",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/John%20Adrian%20Bondy",
"cluster": "0",
"x": 160.35073852539062,
"y": -903.3408813476562,
"score": 0
},
{
"key": "gabriel andrew dirac",
"label": "Gabriel Andrew Dirac",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Gabriel%20Andrew%20Dirac",
"cluster": "0",
"x": 126.69784545898438,
"y": -906.927734375,
"score": 0
},
{
"key": "paul erdős",
"label": "Paul Erdős",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Paul%20Erd%C5%91s",
"cluster": "0",
"x": 128.62188720703125,
"y": -928.2205810546875,
"score": 0
},
{
"key": "percy john heawood",
"label": "Percy John Heawood",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Percy%20John%20Heawood",
"cluster": "0",
"x": 132.42514038085938,
"y": -915.6151733398438,
"score": 0
},
{
"key": "anton kotzig",
"label": "Anton Kotzig",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Anton%20Kotzig",
"cluster": "0",
"x": 134.90591430664062,
"y": -901.9312133789062,
"score": 0
},
{
"key": "dénes kőnig",
"label": "Dénes Kőnig",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/D%C3%A9nes%20K%C5%91nig",
"cluster": "0",
"x": 153.53500366210938,
"y": -923.6826171875,
"score": 0
},
{
"key": "lászló lovász",
"label": "László Lovász",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/L%C3%A1szl%C3%B3%20Lov%C3%A1sz",
"cluster": "0",
"x": 122.37181854248047,
"y": -987.25,
"score": 0.000124302219858327
},
{
"key": "paul seymour (mathematician)",
"label": "Paul Seymour (mathematician)",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Paul%20Seymour%20%28mathematician%29",
"cluster": "0",
"x": 119.23326110839844,
"y": -912.132568359375,
"score": 0
},
{
"key": "w. t. tutte",
"label": "W. T. Tutte",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/W.%20T.%20Tutte",
"cluster": "4",
"x": 604.9615478515625,
"y": -694.9256591796875,
"score": 0.00010984090169089748
},
{
"key": "hassler whitney",
"label": "Hassler Whitney",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Hassler%20Whitney",
"cluster": "0",
"x": 169.03988647460938,
"y": -909.9524536132812,
"score": 0
},
{
"key": "slowly changing dimension",
"label": "Slowly changing dimension",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Slowly%20changing%20dimension",
"cluster": "11",
"x": -1162.8721923828125,
"y": 46.6432991027832,
"score": 0
},
{
"key": "microformat",
"label": "Microformat",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Microformat",
"cluster": "21",
"x": -786.9326782226562,
"y": 236.78131103515625,
"score": 0
},
{
"key": "microdata (html)",
"label": "Microdata (HTML)",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Microdata%20%28HTML%29",
"cluster": "21",
"x": -788.9451293945312,
"y": 227.4476776123047,
"score": 0
},
{
"key": "xml",
"label": "XML",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/XML",
"cluster": "5",
"x": -812.0134887695312,
"y": 514.8312377929688,
"score": 0
},
{
"key": "babelnet",
"label": "BabelNet",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/BabelNet",
"cluster": "11",
"x": -944.9154052734375,
"y": -368.1926574707031,
"score": 0.002164478246721345
},
{
"key": "dbpedia",
"label": "DBpedia",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/DBpedia",
"cluster": "11",
"x": -968.5007934570312,
"y": -368.9994812011719,
"score": 0.00021646377368071811
},
{
"key": "semantic mediawiki",
"label": "Semantic MediaWiki",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Semantic%20MediaWiki",
"cluster": "11",
"x": -912.4962768554688,
"y": -328.338623046875,
"score": 0.0006947545325407717
},
{
"key": "cyc",
"label": "Cyc",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Cyc",
"cluster": "11",
"x": -954.6949462890625,
"y": -454.6947021484375,
"score": 0.003306565356892153
},
{
"key": "entity–relationship model",
"label": "Entity–relationship model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Entity%E2%80%93relationship%20model",
"cluster": "11",
"x": -944.5690307617188,
"y": 23.748191833496094,
"score": 0.0028532348742788646
},
{
"key": "true knowledge",
"label": "True Knowledge",
"tag": "Company",
"URL": "https://en.wikipedia.org/wiki/True%20Knowledge",
"cluster": "11",
"x": -995.8724975585938,
"y": -471.5167541503906,
"score": 0.000028272045598960805
},
{
"key": "yago (database)",
"label": "YAGO (database)",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/YAGO%20%28database%29",
"cluster": "11",
"x": -893.7944946289062,
"y": -382.844482421875,
"score": 0.0005575594191295055
},
{
"key": "knowledge vault",
"label": "Knowledge Vault",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20Vault",
"cluster": "11",
"x": -936.792236328125,
"y": -298.59075927734375,
"score": 0.00031094409765345505
},
{
"key": "clinical data interchange standards consortium",
"label": "Clinical Data Interchange Standards Consortium",
"tag": "Organization",
"URL": "https://en.wikipedia.org/wiki/Clinical%20Data%20Interchange%20Standards%20Consortium",
"cluster": "22",
"x": -516.7845458984375,
"y": -416.3999938964844,
"score": 0.0004273748036375761
},
{
"key": "clinical care classification system",
"label": "Clinical Care Classification System",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Clinical%20Care%20Classification%20System",
"cluster": "22",
"x": -412.52435302734375,
"y": -790.51025390625,
"score": 0
},
{
"key": "docle",
"label": "DOCLE",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/DOCLE",
"cluster": "22",
"x": -469.29522705078125,
"y": -732.8194580078125,
"score": 0.000041170313398274394
},
{
"key": "en 13606",
"label": "EN 13606",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/EN%2013606",
"cluster": "22",
"x": -527.2703857421875,
"y": -620.049072265625,
"score": 0.00026394686829500326
},
{
"key": "medcin",
"label": "MEDCIN",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/MEDCIN",
"cluster": "22",
"x": -352.59442138671875,
"y": -791.632080078125,
"score": 0.0010589604938370035
},
{
"key": "meddra",
"label": "MedDRA",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/MedDRA",
"cluster": "22",
"x": -444.18988037109375,
"y": -569.1815185546875,
"score": 0.00020010930469793362
},
{
"key": "omaha system",
"label": "Omaha System",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Omaha%20System",
"cluster": "22",
"x": -306.0516662597656,
"y": -796.6760864257812,
"score": 0.0010640522752898786
},
{
"key": "foundational model of anatomy",
"label": "Foundational Model of Anatomy",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Foundational%20Model%20of%20Anatomy",
"cluster": "22",
"x": -571.9398803710938,
"y": -710.5590209960938,
"score": 0
},
{
"key": "attempto controlled english",
"label": "Attempto controlled English",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Attempto%20controlled%20English",
"cluster": "11",
"x": -693.1058959960938,
"y": 26.525123596191406,
"score": 0.0013385494892133177
},
{
"key": "never-ending language learning",
"label": "Never-Ending Language Learning",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Never-Ending%20Language%20Learning",
"cluster": "11",
"x": -836.1973266601562,
"y": -429.274169921875,
"score": 0.00007786245225895359
},
{
"key": "mindpixel",
"label": "Mindpixel",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Mindpixel",
"cluster": "11",
"x": -964.6343383789062,
"y": -469.32183837890625,
"score": 0.0000033791551411659985
},
{
"key": "thoughttreasure",
"label": "ThoughtTreasure",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/ThoughtTreasure",
"cluster": "11",
"x": -971.9043579101562,
"y": -425.3985900878906,
"score": 0.00001478393462905329
},
{
"key": "soar (cognitive architecture)",
"label": "Soar (cognitive architecture)",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Soar%20%28cognitive%20architecture%29",
"cluster": "11",
"x": -489.733154296875,
"y": -402.2613220214844,
"score": 0.000011574614936723598
},
{
"key": "openai",
"label": "OpenAI",
"tag": "Organization",
"URL": "https://en.wikipedia.org/wiki/OpenAI",
"cluster": "11",
"x": -647.9365844726562,
"y": -502.41143798828125,
"score": 2.2904207732002446e-7
},
{
"key": "medical classification",
"label": "Medical classification",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Medical%20classification",
"cluster": "22",
"x": -268.8819580078125,
"y": -778.7237548828125,
"score": 0.0012169888168756826
},
{
"key": "categorization",
"label": "Categorization",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Categorization",
"cluster": "15",
"x": -118.73316192626953,
"y": -440.3768310546875,
"score": 0.000832430514242821
},
{
"key": "classification (general theory)",
"label": "Classification (general theory)",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Classification%20%28general%20theory%29",
"cluster": "15",
"x": -42.45366668701172,
"y": -591.6888427734375,
"score": 0.0015474837583148715
},
{
"key": "celestial emporium of benevolent recognition",
"label": "Celestial Emporium of Benevolent Recognition",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Celestial%20Emporium%20of%20Benevolent%20Recognition",
"cluster": "11",
"x": -327.3880310058594,
"y": -506.41253662109375,
"score": 0
},
{
"key": "conflation",
"label": "Conflation",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Conflation",
"cluster": "11",
"x": -310.910400390625,
"y": -510.711181640625,
"score": 0
},
{
"key": "hypernym",
"label": "Hypernym",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Hypernym",
"cluster": "11",
"x": -538.8417358398438,
"y": -463.9079895019531,
"score": 0.00006680450549889743
},
{
"key": "knowledge representation",
"label": "Knowledge representation",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20representation",
"cluster": "21",
"x": -457.52752685546875,
"y": -388.3069152832031,
"score": 0.01376680905074288
},
{
"key": "lexicon",
"label": "Lexicon",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Lexicon",
"cluster": "11",
"x": -383.3857116699219,
"y": -241.419189453125,
"score": 0.0001956223005320509
},
{
"key": "protégé (software)",
"label": "Protégé (software)",
"tag": "Tool",
"URL": "https://en.wikipedia.org/wiki/Prot%C3%A9g%C3%A9%20%28software%29",
"cluster": "11",
"x": -766.2107543945312,
"y": -254.3942413330078,
"score": 0.0013839791736388841
},
{
"key": "structuralism",
"label": "Structuralism",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Structuralism",
"cluster": "11",
"x": 5.247107982635498,
"y": -18.6092472076416,
"score": 0.00011671418764303403
},
{
"key": "taxon",
"label": "Taxon",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Taxon",
"cluster": "15",
"x": 364.98291015625,
"y": -795.843017578125,
"score": 0.0010798203727240168
},
{
"key": "taxonomy for search engines",
"label": "Taxonomy for search engines",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Taxonomy%20for%20search%20engines",
"cluster": "11",
"x": -319.3077697753906,
"y": -503.34661865234375,
"score": 0
},
{
"key": "thesaurus (information retrieval)",
"label": "Thesaurus (information retrieval)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Thesaurus%20%28information%20retrieval%29",
"cluster": "11",
"x": -510.4674377441406,
"y": -266.0479736328125,
"score": 0.00007575394051360483
},
{
"key": "computational semantics",
"label": "Computational semantics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20semantics",
"cluster": "11",
"x": -965.2175903320312,
"y": -236.58160400390625,
"score": 0.0015080942907774104
},
{
"key": "natural language processing",
"label": "Natural language processing",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Natural%20language%20processing",
"cluster": "11",
"x": -653.91259765625,
"y": -112.69408416748047,
"score": 0.0006426418621691633
},
{
"key": "semantic analytics",
"label": "Semantic analytics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Semantic%20analytics",
"cluster": "11",
"x": -491.98004150390625,
"y": 96.77739715576172,
"score": 0.00014142895902837045
},
{
"key": "semantic analysis (machine learning)",
"label": "Semantic analysis (machine learning)",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Semantic%20analysis%20%28machine%20learning%29",
"cluster": "11",
"x": -710.1082153320312,
"y": -107.33619689941406,
"score": 0.000020306177099575617
},
{
"key": "word sense",
"label": "Word sense",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Word%20sense",
"cluster": "11",
"x": -1096.0675048828125,
"y": -262.6681823730469,
"score": 0.00009654725479997093
},
{
"key": "gellish",
"label": "Gellish",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Gellish",
"cluster": "11",
"x": -683.6392822265625,
"y": -173.24795532226562,
"score": 0
},
{
"key": "graph (abstract data type)",
"label": "Graph (abstract data type)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Graph%20%28abstract%20data%20type%29",
"cluster": "0",
"x": -77.38995361328125,
"y": -655.3379516601562,
"score": 0.0018856381979477153
},
{
"key": "idea networking",
"label": "Idea networking",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Idea%20networking",
"cluster": "20",
"x": 82.23460388183594,
"y": -167.45657348632812,
"score": 0.0027231880132923816
},
{
"key": "implicit relational assessment procedure",
"label": "Implicit Relational Assessment Procedure",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Implicit%20Relational%20Assessment%20Procedure",
"cluster": "20",
"x": -93.10240936279297,
"y": -371.5769958496094,
"score": 0
},
{
"key": "q methodology",
"label": "Q methodology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Q%20methodology",
"cluster": "20",
"x": -47.5731086730957,
"y": -114.64006805419922,
"score": 0.00007896924894366487
},
{
"key": "commonsense knowledge bases",
"label": "Commonsense knowledge bases",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Commonsense%20knowledge%20bases",
"cluster": "11",
"x": -755.6460571289062,
"y": -233.0300750732422,
"score": 0.0005671759716945092
},
{
"key": "controlled vocabulary",
"label": "Controlled vocabulary",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Controlled%20vocabulary",
"cluster": "11",
"x": -712.2034301757812,
"y": -46.502952575683594,
"score": 0.002332019554736243
},
{
"key": "classification scheme (information science)",
"label": "Classification scheme (information science)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Classification%20scheme%20%28information%20science%29",
"cluster": "11",
"x": -930.228759765625,
"y": -63.278953552246094,
"score": 0.00020000396450949232
},
{
"key": "formal concept analysis",
"label": "Formal concept analysis",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Formal%20concept%20analysis",
"cluster": "4",
"x": -233.8119659423828,
"y": -231.75582885742188,
"score": 0.0009658016332339617
},
{
"key": "lattice (order)",
"label": "Lattice (order)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Lattice%20%28order%29",
"cluster": "11",
"x": -557.2487182617188,
"y": -293.2978820800781,
"score": 0.0019138917062398119
},
{
"key": "ontology",
"label": "Ontology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Ontology",
"cluster": "11",
"x": -802.4988403320312,
"y": 104.12451171875,
"score": 0
},
{
"key": "ontology chart",
"label": "Ontology chart",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Ontology%20chart",
"cluster": "11",
"x": -812.9419555664062,
"y": -191.93759155273438,
"score": 0
},
{
"key": "open semantic framework",
"label": "Open Semantic Framework",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Open%20Semantic%20Framework",
"cluster": "11",
"x": -967.7907104492188,
"y": -35.30357360839844,
"score": 0.003212947743168521
},
{
"key": "soft ontology",
"label": "Soft ontology",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Soft%20ontology",
"cluster": "11",
"x": -802.4599609375,
"y": -210.4902801513672,
"score": 0
},
{
"key": "terminology extraction",
"label": "Terminology extraction",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Terminology%20extraction",
"cluster": "11",
"x": -631.9566040039062,
"y": -185.26966857910156,
"score": 0.001905128877444444
},
{
"key": "characteristica universalis",
"label": "Characteristica universalis",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Characteristica%20universalis",
"cluster": "11",
"x": -806.2623901367188,
"y": -200.8917694091797,
"score": 0
},
{
"key": "interoperability",
"label": "Interoperability",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Interoperability",
"cluster": "11",
"x": -627.125244140625,
"y": -20.90610122680664,
"score": 0.0021424713354572383
},
{
"key": "abstract syntax tree",
"label": "Abstract syntax tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Abstract%20syntax%20tree",
"cluster": "5",
"x": -459.3824462890625,
"y": -16.06570816040039,
"score": 0.0048607617062511165
},
{
"key": "exquisite corpse",
"label": "Exquisite corpse",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Exquisite%20corpse",
"cluster": "13",
"x": -178.0074005126953,
"y": -407.5213623046875,
"score": 0.0009569882372060549
},
{
"key": "graph (discrete mathematics)",
"label": "Graph (discrete mathematics)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Graph%20%28discrete%20mathematics%29",
"cluster": "0",
"x": 77.01103973388672,
"y": -580.4057006835938,
"score": 0.0013833863016234334
},
{
"key": "idea",
"label": "Idea",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Idea",
"cluster": "13",
"x": -71.74822235107422,
"y": -448.6311340332031,
"score": 0.0034297437843280303
},
{
"key": "mental literacy",
"label": "Mental literacy",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Mental%20literacy",
"cluster": "13",
"x": -121.71910095214844,
"y": -328.4855651855469,
"score": 0
},
{
"key": "nodal organizational structure",
"label": "Nodal organizational structure",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Nodal%20organizational%20structure",
"cluster": "10",
"x": 122.17115783691406,
"y": 217.4998321533203,
"score": 0.005763290814021886
},
{
"key": "personal wiki",
"label": "Personal wiki",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Personal%20wiki",
"cluster": "14",
"x": -311.3005676269531,
"y": -114.6126708984375,
"score": 0.0014959448800083313
},
{
"key": "rhizome (philosophy)",
"label": "Rhizome (philosophy)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Rhizome%20%28philosophy%29",
"cluster": "13",
"x": -68.34617614746094,
"y": -678.7107543945312,
"score": 0.004682216382571588
},
{
"key": "social map",
"label": "Social map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Social%20map",
"cluster": "13",
"x": 94.21646881103516,
"y": -225.3516082763672,
"score": 0.003222587871337692
},
{
"key": "spider mapping",
"label": "Spider mapping",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Spider%20mapping",
"cluster": "13",
"x": -256.9673767089844,
"y": -302.2412109375,
"score": 0.00003330984889842856
},
{
"key": "biological motion",
"label": "Biological motion",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Biological%20motion",
"cluster": "17",
"x": 1245.595947265625,
"y": 278.42144775390625,
"score": 0.0000011833840661534595
},
{
"key": "eye movement (sensory)",
"label": "Eye movement (sensory)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Eye%20movement%20%28sensory%29",
"cluster": "17",
"x": 1221.6109619140625,
"y": 297.4622802734375,
"score": 0
},
{
"key": "illusory motion",
"label": "Illusory motion",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Illusory%20motion",
"cluster": "17",
"x": 1214.0107421875,
"y": 267.8876647949219,
"score": 0
},
{
"key": "induced movement",
"label": "Induced movement",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Induced%20movement",
"cluster": "17",
"x": 1228.5450439453125,
"y": 259.1819763183594,
"score": 3.817367955333741e-8
},
{
"key": "jerkiness",
"label": "Jerkiness",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Jerkiness",
"cluster": "17",
"x": 1264.9259033203125,
"y": 299.31048583984375,
"score": 0.0004619778699544894
},
{
"key": "lilac chaser",
"label": "Lilac chaser",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Lilac%20chaser",
"cluster": "17",
"x": 1229.3953857421875,
"y": 289.3548278808594,
"score": 0
},
{
"key": "max wertheimer",
"label": "Max Wertheimer",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Max%20Wertheimer",
"cluster": "17",
"x": 1220.01318359375,
"y": 312.4950866699219,
"score": 0
},
{
"key": "motion aftereffect",
"label": "Motion aftereffect",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Motion%20aftereffect",
"cluster": "17",
"x": 1250.07763671875,
"y": 260.91070556640625,
"score": 9.54341988833435e-7
},
{
"key": "motion (physics)",
"label": "Motion (physics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Motion%20%28physics%29",
"cluster": "17",
"x": 1263.8114013671875,
"y": 278.351318359375,
"score": 0.0000011452103866001223
},
{
"key": "motion sensing in vision",
"label": "Motion sensing in vision",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Motion%20sensing%20in%20vision",
"cluster": "17",
"x": 1195.0745849609375,
"y": 298.7527160644531,
"score": 0
},
{
"key": "optical flow",
"label": "Optical flow",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Optical%20flow",
"cluster": "17",
"x": 1217.9952392578125,
"y": 283.680908203125,
"score": 0
},
{
"key": "peripheral drift illusion",
"label": "Peripheral drift illusion",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Peripheral%20drift%20illusion",
"cluster": "17",
"x": 1223.55859375,
"y": 275.3535461425781,
"score": 0
},
{
"key": "persistence of vision",
"label": "Persistence of vision",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Persistence%20of%20vision",
"cluster": "17",
"x": 1273.7554931640625,
"y": 287.45947265625,
"score": 0.0009262079870026258
},
{
"key": "pulfrich effect",
"label": "Pulfrich effect",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Pulfrich%20effect",
"cluster": "17",
"x": 1229.0216064453125,
"y": 304.6051940917969,
"score": 0
},
{
"key": "strobe light",
"label": "Strobe light",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Strobe%20light",
"cluster": "17",
"x": 1273.398681640625,
"y": 321.86798095703125,
"score": 0.0000017559892594535206
},
{
"key": "stroboscopic effect",
"label": "Stroboscopic effect",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Stroboscopic%20effect",
"cluster": "17",
"x": 1262.1036376953125,
"y": 333.6462707519531,
"score": 0.000002214073414093569
},
{
"key": "visual modularity",
"label": "Visual modularity",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Visual%20modularity",
"cluster": "17",
"x": 1092.1937255859375,
"y": 324.96038818359375,
"score": 0.000002366768132306919
},
{
"key": "visual perception",
"label": "Visual perception",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Visual%20perception",
"cluster": "17",
"x": 895.0927734375,
"y": 317.5968322753906,
"score": 0.000006298657126300673
},
{
"key": "wagon-wheel effect",
"label": "Wagon-wheel effect",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Wagon-wheel%20effect",
"cluster": "17",
"x": 1196.847412109375,
"y": 354.10638427734375,
"score": 0.0000027485049278402937
},
{
"key": "causal diagram",
"label": "Causal diagram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Causal%20diagram",
"cluster": "6",
"x": 438.1298828125,
"y": 154.97250366210938,
"score": 0.0020381224013600865
},
{
"key": "causal loop diagram",
"label": "Causal loop diagram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Causal%20loop%20diagram",
"cluster": "23",
"x": 494.7638854980469,
"y": 185.18702697753906,
"score": 0.006216810233775465
},
{
"key": "system dynamics",
"label": "System dynamics",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/System%20dynamics",
"cluster": "23",
"x": 622.8671875,
"y": 163.65269470214844,
"score": 0.0035755672016735958
},
{
"key": "ecosystem model",
"label": "Ecosystem model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Ecosystem%20model",
"cluster": "23",
"x": 816.7540283203125,
"y": -44.04935073852539,
"score": 0
},
{
"key": "system dynamics society",
"label": "System Dynamics Society",
"tag": "Organization",
"URL": "https://en.wikipedia.org/wiki/System%20Dynamics%20Society",
"cluster": "23",
"x": 756.5075073242188,
"y": 209.07211303710938,
"score": 0
},
{
"key": "wicked problem",
"label": "Wicked problem",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Wicked%20problem",
"cluster": "20",
"x": 347.049072265625,
"y": 60.60059356689453,
"score": 0
},
{
"key": "population dynamics",
"label": "Population dynamics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Population%20dynamics",
"cluster": "23",
"x": 772.3981323242188,
"y": -59.25724411010742,
"score": 0
},
{
"key": "dynamical systems theory",
"label": "Dynamical systems theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Dynamical%20systems%20theory",
"cluster": "23",
"x": 748.3113403320312,
"y": -34.59257888793945,
"score": 0
},
{
"key": "grey box model",
"label": "Grey box model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Grey%20box%20model",
"cluster": "23",
"x": 726.7197265625,
"y": 295.0785827636719,
"score": 0
},
{
"key": "operations research",
"label": "Operations research",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Operations%20research",
"cluster": "7",
"x": 83.52240753173828,
"y": 723.7681274414062,
"score": 0.0037512941393699627
},
{
"key": "system identification",
"label": "System identification",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/System%20identification",
"cluster": "23",
"x": 755.0643920898438,
"y": 196.7957763671875,
"score": 0
},
{
"key": "systems theory",
"label": "Systems theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Systems%20theory",
"cluster": "23",
"x": 719.5684204101562,
"y": 213.43527221679688,
"score": 0.004583050377830994
},
{
"key": "systems thinking",
"label": "Systems thinking",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Systems%20thinking",
"cluster": "23",
"x": 705.0557861328125,
"y": 262.6366882324219,
"score": 0.002830704567740447
},
{
"key": "triz",
"label": "TRIZ",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/TRIZ",
"cluster": "20",
"x": 236.83993530273438,
"y": 65.4411392211914,
"score": 0.0017072601698925449
},
{
"key": "directed acyclic graph",
"label": "Directed acyclic graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Directed%20acyclic%20graph",
"cluster": "5",
"x": -230.62423706054688,
"y": 345.4334411621094,
"score": 0
},
{
"key": "path analysis (statistics)",
"label": "Path analysis (statistics)",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Path%20analysis%20%28statistics%29",
"cluster": "23",
"x": 507.91180419921875,
"y": 191.16986083984375,
"score": 0
},
{
"key": "positive feedback",
"label": "Positive feedback",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Positive%20feedback",
"cluster": "23",
"x": 720.36474609375,
"y": 331.7070617675781,
"score": 0
},
{
"key": "structural equation modeling",
"label": "Structural equation modeling",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Structural%20equation%20modeling",
"cluster": "6",
"x": 402.60589599609375,
"y": 196.0709228515625,
"score": 0.0028791650213429673
},
{
"key": "causal map",
"label": "Causal map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Causal%20map",
"cluster": "6",
"x": 453.74176025390625,
"y": 190.30531311035156,
"score": 0
},
{
"key": "aliasing",
"label": "Aliasing",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Aliasing",
"cluster": "17",
"x": 957.2798461914062,
"y": 460.7005615234375,
"score": 0
},
{
"key": "computer vision",
"label": "Computer vision",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computer%20vision",
"cluster": "8",
"x": 710.0435791015625,
"y": 490.1965026855469,
"score": 0
},
{
"key": "multisensory integration",
"label": "Multisensory integration",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Multisensory%20integration",
"cluster": "17",
"x": 295.4568176269531,
"y": 322.5936584472656,
"score": 0
},
{
"key": "cognitive science",
"label": "Cognitive science",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20science",
"cluster": "18",
"x": 543.527587890625,
"y": 196.1392822265625,
"score": 0
},
{
"key": "modularity",
"label": "Modularity",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Modularity",
"cluster": "17",
"x": 820.330810546875,
"y": 384.6979675292969,
"score": 0
},
{
"key": "flicker (light)",
"label": "Flicker (light)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Flicker%20%28light%29",
"cluster": "17",
"x": 1306.2479248046875,
"y": 340.5159606933594,
"score": 0
},
{
"key": "flicker fusion threshold",
"label": "Flicker fusion threshold",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Flicker%20fusion%20threshold",
"cluster": "17",
"x": 1306.7171630859375,
"y": 318.5633544921875,
"score": 0
},
{
"key": "afterimage",
"label": "Afterimage",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Afterimage",
"cluster": "17",
"x": 1304.3720703125,
"y": 265.7323303222656,
"score": 0
},
{
"key": "motion capture",
"label": "Motion capture",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Motion%20capture",
"cluster": "17",
"x": 1295.796875,
"y": 275.5779113769531,
"score": 0
},
{
"key": "signage",
"label": "Signage",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Signage",
"cluster": "17",
"x": 604.0667114257812,
"y": 474.4591369628906,
"score": 0
},
{
"key": "tree (graph theory)",
"label": "Tree (graph theory)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Tree%20%28graph%20theory%29",
"cluster": "4",
"x": 486.3802795410156,
"y": -459.5943298339844,
"score": 0.0013233762903584359
},
{
"key": "tree (set theory)",
"label": "Tree (set theory)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Tree%20%28set%20theory%29",
"cluster": "4",
"x": 445.56549072265625,
"y": -643.8995971679688,
"score": 0.00047218950625679736
},
{
"key": "cardinal tree",
"label": "Cardinal tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Cardinal%20tree",
"cluster": "4",
"x": 449.58154296875,
"y": -610.8460693359375,
"score": 0
},
{
"key": "ordinal tree",
"label": "Ordinal tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Ordinal%20tree",
"cluster": "4",
"x": 442.8125915527344,
"y": -614.7493896484375,
"score": 0
},
{
"key": "hierarchy (mathematics)",
"label": "Hierarchy (mathematics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Hierarchy%20%28mathematics%29",
"cluster": "4",
"x": 363.5637512207031,
"y": -608.8851318359375,
"score": 0.00012095185761164601
},
{
"key": "dialog tree",
"label": "Dialog tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Dialog%20tree",
"cluster": "4",
"x": 424.689453125,
"y": -592.5746459960938,
"score": 0
},
{
"key": "single inheritance",
"label": "Single inheritance",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Single%20inheritance",
"cluster": "4",
"x": 412.7212829589844,
"y": -596.4953002929688,
"score": 0
},
{
"key": "generative grammar",
"label": "Generative grammar",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Generative%20grammar",
"cluster": "19",
"x": -43.279937744140625,
"y": -392.4776611328125,
"score": 0.0005879925664638194
},
{
"key": "genetic programming",
"label": "Genetic programming",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Genetic%20programming",
"cluster": "0",
"x": 466.38800048828125,
"y": -489.4223327636719,
"score": 0.00019959249871609436
},
{
"key": "binary space partition tree",
"label": "Binary space partition tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Binary%20space%20partition%20tree",
"cluster": "4",
"x": 783.2446899414062,
"y": -617.8587646484375,
"score": 0.0003173754007882676
},
{
"key": "recursion",
"label": "Recursion",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Recursion",
"cluster": "19",
"x": 121.84003448486328,
"y": -595.9076538085938,
"score": 0.000186782896744112
},
{
"key": "fenwick tree",
"label": "Fenwick tree",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Fenwick%20tree",
"cluster": "4",
"x": 421.2061462402344,
"y": -601.9625244140625,
"score": 0
},
{
"key": "trie",
"label": "Trie",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Trie",
"cluster": "4",
"x": 211.989013671875,
"y": -801.8059692382812,
"score": 0.00008592036875552178
},
{
"key": "enfilade (xanadu)",
"label": "Enfilade (Xanadu)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Enfilade%20%28Xanadu%29",
"cluster": "4",
"x": 419.8973388671875,
"y": -521.6289672851562,
"score": 0.00017782551553353906
},
{
"key": "hierarchical temporal memory",
"label": "Hierarchical temporal memory",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20temporal%20memory",
"cluster": "18",
"x": 35.96812057495117,
"y": -253.84210205078125,
"score": 0.0006406357836220079
},
{
"key": "card sorting",
"label": "Card sorting",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Card%20sorting",
"cluster": "20",
"x": -119.89045715332031,
"y": 121.5815658569336,
"score": 0
},
{
"key": "group concept mapping",
"label": "Group concept mapping",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Group%20concept%20mapping",
"cluster": "20",
"x": 71.61437225341797,
"y": -99.77106475830078,
"score": 0
},
{
"key": "brainstorming",
"label": "Brainstorming",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Brainstorming",
"cluster": "20",
"x": 113.1626968383789,
"y": -202.05372619628906,
"score": 0.000615542262997186
},
{
"key": "concept driven strategy",
"label": "Concept driven strategy",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Concept%20driven%20strategy",
"cluster": "20",
"x": 108.79314422607422,
"y": -39.69621658325195,
"score": 0
},
{
"key": "concept mapping",
"label": "Concept mapping",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Concept%20mapping",
"cluster": "20",
"x": -373.0652160644531,
"y": -145.80311584472656,
"score": 0
},
{
"key": "pathfinder network",
"label": "Pathfinder network",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Pathfinder%20network",
"cluster": "20",
"x": 356.67791748046875,
"y": -264.4546203613281,
"score": 0
},
{
"key": "social network analysis",
"label": "Social network analysis",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Social%20network%20analysis",
"cluster": "23",
"x": 457.07025146484375,
"y": -79.12741088867188,
"score": 0.01030046997784691
},
{
"key": "graph traversal",
"label": "Graph traversal",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Graph%20traversal",
"cluster": "0",
"x": -36.188255310058594,
"y": -768.4710083007812,
"score": 0
},
{
"key": "graph drawing software",
"label": "Graph drawing software",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Graph%20drawing%20software",
"cluster": "0",
"x": -31.414161682128906,
"y": -760.2022094726562,
"score": 0
},
{
"key": "contextualism",
"label": "Contextualism",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Contextualism",
"cluster": "13",
"x": -213.95245361328125,
"y": -883.2734985351562,
"score": 0.0004509384299439154
},
{
"key": "deleuze and guattari",
"label": "Deleuze and Guattari",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Deleuze%20and%20Guattari",
"cluster": "13",
"x": -67.2768783569336,
"y": -737.4854736328125,
"score": 0
},
{
"key": "heterarchy",
"label": "Heterarchy",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Heterarchy",
"cluster": "11",
"x": -259.7275695800781,
"y": -504.8309020996094,
"score": 0.0016056226327426182
},
{
"key": "minority (philosophy)",
"label": "Minority (philosophy)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Minority%20%28philosophy%29",
"cluster": "13",
"x": -71.92227172851562,
"y": -760.505126953125,
"score": 0
},
{
"key": "multiplicity (philosophy)",
"label": "Multiplicity (philosophy)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Multiplicity%20%28philosophy%29",
"cluster": "13",
"x": -151.02752685546875,
"y": -776.9718017578125,
"score": 0
},
{
"key": "mutualism (biology)",
"label": "Mutualism (biology)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Mutualism%20%28biology%29",
"cluster": "13",
"x": -64.20784759521484,
"y": -754.9276123046875,
"score": 0
},
{
"key": "perspectivism",
"label": "Perspectivism",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Perspectivism",
"cluster": "13",
"x": -224.75930786132812,
"y": -681.7512817382812,
"score": 0.0003200640410137074
},
{
"key": "plane of immanence",
"label": "Plane of immanence",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Plane%20of%20immanence",
"cluster": "13",
"x": 323.0514831542969,
"y": -403.70184326171875,
"score": 0.000003187502242703674
},
{
"key": "digital infinity",
"label": "Digital infinity",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Digital%20infinity",
"cluster": "19",
"x": 164.18714904785156,
"y": -658.8633422851562,
"score": 0.00024712393407932807
},
{
"key": "commonplace book",
"label": "Commonplace book",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Commonplace%20book",
"cluster": "14",
"x": -361.00982666015625,
"y": -132.0633087158203,
"score": 0.0006791098946793512
},
{
"key": "comparison of wiki software",
"label": "Comparison of wiki software",
"tag": "List",
"URL": "https://en.wikipedia.org/wiki/Comparison%20of%20wiki%20software",
"cluster": "14",
"x": -465.9567565917969,
"y": 38.939231872558594,
"score": 0.00005694152122469968
},
{
"key": "notetaking",
"label": "Notetaking",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Notetaking",
"cluster": "14",
"x": -358.01434326171875,
"y": -191.48202514648438,
"score": 0.00011647202265579341
},
{
"key": "outliner",
"label": "Outliner",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Outliner",
"cluster": "14",
"x": -335.67010498046875,
"y": -93.59388732910156,
"score": 0.005505165170131647
},
{
"key": "personal information manager",
"label": "Personal information manager",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Personal%20information%20manager",
"cluster": "14",
"x": -274.0675354003906,
"y": 81.69979858398438,
"score": 0.0006449911111076553
},
{
"key": "personal knowledge management",
"label": "Personal knowledge management",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Personal%20knowledge%20management",
"cluster": "14",
"x": -350.107666015625,
"y": -19.07309341430664,
"score": 0.0022485017480281277
},
{
"key": "zettelkasten",
"label": "Zettelkasten",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Zettelkasten",
"cluster": "14",
"x": -282.62139892578125,
"y": -149.15438842773438,
"score": 0.0038569606030890444
},
{
"key": "antifragility",
"label": "Antifragility",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Antifragility",
"cluster": "10",
"x": 187.0358428955078,
"y": 407.0599670410156,
"score": 0.002368967331847648
},
{
"key": "complexity theory and organizations",
"label": "Complexity theory and organizations",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Complexity%20theory%20and%20organizations",
"cluster": "10",
"x": 456.2109680175781,
"y": 215.65074157714844,
"score": 0.000036150406005194665
},
{
"key": "engineering of systems",
"label": "Engineering of systems",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Engineering%20of%20systems",
"cluster": "10",
"x": 51.48921203613281,
"y": 843.0659790039062,
"score": 0.0005063911187800877
},
{
"key": "enterprise modelling",
"label": "Enterprise modelling",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Enterprise%20modelling",
"cluster": "11",
"x": -586.4564208984375,
"y": 387.7236022949219,
"score": 0.0005902892117593951
},
{
"key": "flat organization",
"label": "Flat organization",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Flat%20organization",
"cluster": "10",
"x": 252.04855346679688,
"y": 134.1737823486328,
"score": 0
},
{
"key": "information management",
"label": "Information management",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Information%20management",
"cluster": "21",
"x": -342.910400390625,
"y": 350.9992370605469,
"score": 0.012950638349086252
},
{
"key": "hierarchical organization",
"label": "Hierarchical organization",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20organization",
"cluster": "10",
"x": 292.79083251953125,
"y": 76.03492736816406,
"score": 0.00007729357059752553
},
{
"key": "organizational architecture",
"label": "Organizational architecture",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Organizational%20architecture",
"cluster": "11",
"x": -512.9902954101562,
"y": 294.671630859375,
"score": 0.0001667750827767636
},
{
"key": "organizational culture",
"label": "Organizational culture",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Organizational%20culture",
"cluster": "12",
"x": 419.12542724609375,
"y": 261.25958251953125,
"score": 0.0008365501132273357
},
{
"key": "organizational structure",
"label": "Organizational structure",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Organizational%20structure",
"cluster": "11",
"x": -210.84027099609375,
"y": 261.264404296875,
"score": 0
},
{
"key": "industrial and organizational psychology",
"label": "Industrial and organizational psychology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Industrial%20and%20organizational%20psychology",
"cluster": "12",
"x": 475.9872131347656,
"y": 441.9350891113281,
"score": 0.0008528352050131092
},
{
"key": "social group",
"label": "Social group",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Social%20group",
"cluster": "12",
"x": 534.3731689453125,
"y": -307.8911437988281,
"score": 0.000855642598364784
},
{
"key": "spontaneous order",
"label": "Spontaneous order",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Spontaneous%20order",
"cluster": "23",
"x": 342.17333984375,
"y": 252.11541748046875,
"score": 0.000053371085777238835
},
{
"key": "clandestine cell system",
"label": "Clandestine cell system",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Clandestine%20cell%20system",
"cluster": "10",
"x": 72.9683609008789,
"y": 179.9698944091797,
"score": 0.00005215585678808029
},
{
"key": "unorganisation",
"label": "Unorganisation",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Unorganisation",
"cluster": "20",
"x": -57.295021057128906,
"y": 78.55626678466797,
"score": 0.00011310373631295159
},
{
"key": "idealism",
"label": "Idealism",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Idealism",
"cluster": "14",
"x": -6.959212303161621,
"y": -600.156982421875,
"score": 0.000041064402412063116
},
{
"key": "creativity techniques",
"label": "Creativity techniques",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Creativity%20techniques",
"cluster": "20",
"x": 156.88656616210938,
"y": -232.79005432128906,
"score": 0.002513126304581234
},
{
"key": "diffusion of innovations",
"label": "Diffusion of innovations",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Diffusion%20of%20innovations",
"cluster": "20",
"x": 297.0165710449219,
"y": -256.9774169921875,
"score": 0.0037566751717212003
},
{
"key": "ideology",
"label": "Ideology",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Ideology",
"cluster": "13",
"x": -127.68160247802734,
"y": -669.994873046875,
"score": 0.00003664979465538784
},
{
"key": "notion (philosophy)",
"label": "Notion (philosophy)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Notion%20%28philosophy%29",
"cluster": "13",
"x": -253.23367309570312,
"y": -544.9735717773438,
"score": 0
},
{
"key": "object of the mind",
"label": "Object of the mind",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Object%20of%20the%20mind",
"cluster": "13",
"x": -223.0965576171875,
"y": -586.4507446289062,
"score": 0.000024846858112765485
},
{
"key": "think tank",
"label": "Think tank",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Think%20tank",
"cluster": "20",
"x": -119.1697998046875,
"y": -230.24562072753906,
"score": 0.00005902675912702533
},
{
"key": "thought experiment",
"label": "Thought experiment",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Thought%20experiment",
"cluster": "6",
"x": 68.5882339477539,
"y": 340.8675231933594,
"score": 0.00004642504782506759
},
{
"key": "history of ideas",
"label": "History of ideas",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/History%20of%20ideas",
"cluster": "13",
"x": -99.1052017211914,
"y": -807.9873657226562,
"score": 0.00023740211314220535
},
{
"key": "intellectual history",
"label": "Intellectual history",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Intellectual%20history",
"cluster": "13",
"x": -87.77902221679688,
"y": -807.7369384765625,
"score": 0.00023740211314220535
},
{
"key": "concept",
"label": "Concept",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Concept",
"cluster": "13",
"x": -320.0277404785156,
"y": -534.294921875,
"score": 0.000865834372851787
},
{
"key": "philosophical analysis",
"label": "Philosophical analysis",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Philosophical%20analysis",
"cluster": "13",
"x": 4.303709983825684,
"y": -511.58221435546875,
"score": 0.000025711553261879532
},
{
"key": "photoshop tennis",
"label": "Photoshop tennis",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Photoshop%20tennis",
"cluster": "13",
"x": -198.376953125,
"y": -455.125732421875,
"score": 0
},
{
"key": "comic jam",
"label": "Comic jam",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Comic%20jam",
"cluster": "13",
"x": -193.90914916992188,
"y": -435.8758239746094,
"score": 0
},
{
"key": "round-robin story",
"label": "Round-robin story",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Round-robin%20story",
"cluster": "13",
"x": -203.40130615234375,
"y": -446.73858642578125,
"score": 0
},
{
"key": "mindmap",
"label": "Mindmap",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Mindmap",
"cluster": "13",
"x": -162.69125366210938,
"y": -324.9837341308594,
"score": 0.006504778576802172
},
{
"key": "behavioral geography",
"label": "Behavioral geography",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Behavioral%20geography",
"cluster": "18",
"x": 460.13970947265625,
"y": 353.3959655761719,
"score": 0
},
{
"key": "cognitive psychology",
"label": "Cognitive psychology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20psychology",
"cluster": "18",
"x": 289.9866638183594,
"y": 37.24297332763672,
"score": 0.000027675917676169614
},
{
"key": "spatial cognition",
"label": "Spatial cognition",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Spatial%20cognition",
"cluster": "18",
"x": 364.1803894042969,
"y": 300.1258239746094,
"score": 0.00000515344673970055
},
{
"key": "geovisualization",
"label": "Geovisualization",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Geovisualization",
"cluster": "8",
"x": 434.0361633300781,
"y": 604.18115234375,
"score": 0.001593587269742069
},
{
"key": "wayfinding",
"label": "Wayfinding",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Wayfinding",
"cluster": "7",
"x": 123.08663940429688,
"y": 417.60968017578125,
"score": 0
},
{
"key": "b-tree",
"label": "B-tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/B-tree",
"cluster": "4",
"x": 1021.5797729492188,
"y": -549.2489013671875,
"score": 0.0030606271745285364
},
{
"key": "data drilling",
"label": "Data drilling",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Data%20drilling",
"cluster": "7",
"x": 39.929752349853516,
"y": -159.58120727539062,
"score": 0
},
{
"key": "hierarchical model",
"label": "Hierarchical model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20model",
"cluster": "4",
"x": 409.6672058105469,
"y": -557.8333129882812,
"score": 0.0001067593023406819
},
{
"key": "hierarchical query",
"label": "Hierarchical query",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20query",
"cluster": "4",
"x": 262.63189697265625,
"y": -593.9261474609375,
"score": 0.0004929280640588892
},
{
"key": "tree testing",
"label": "Tree testing",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Tree%20testing",
"cluster": "4",
"x": 119.97872161865234,
"y": -82.75764465332031,
"score": 0
},
{
"key": "comparative method",
"label": "Comparative method",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Comparative%20method",
"cluster": "19",
"x": 381.8501281738281,
"y": -961.7783203125,
"score": 0.0002493014885889067
},
{
"key": "genetic relationship (linguistics)",
"label": "Genetic relationship (linguistics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Genetic%20relationship%20%28linguistics%29",
"cluster": "19",
"x": 512.11865234375,
"y": -1140.35888671875,
"score": 0.00004896738724590808
},
{
"key": "indo-european studies",
"label": "Indo-European studies",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Indo-European%20studies",
"cluster": "19",
"x": 438.0217590332031,
"y": -1109.485107421875,
"score": 0.0000031086794381373326
},
{
"key": "linkage (linguistics)",
"label": "Linkage (linguistics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Linkage%20%28linguistics%29",
"cluster": "19",
"x": 541.4375610351562,
"y": -1190.5421142578125,
"score": 0.000045720538791417714
},
{
"key": "wave model (linguistics)",
"label": "Wave model (linguistics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Wave%20model%20%28linguistics%29",
"cluster": "19",
"x": 459.50140380859375,
"y": -896.134521484375,
"score": 0.00005619611319968458
},
{
"key": "father tongue hypothesis",
"label": "Father Tongue hypothesis",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Father%20Tongue%20hypothesis",
"cluster": "19",
"x": 511.541259765625,
"y": -1122.0006103515625,
"score": 0
},
{
"key": "memetics",
"label": "Memetics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Memetics",
"cluster": "19",
"x": 404.36859130859375,
"y": -611.43408203125,
"score": 0
},
{
"key": "language contact",
"label": "Language contact",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Language%20contact",
"cluster": "19",
"x": 568.429443359375,
"y": -1246.2664794921875,
"score": 0
},
{
"key": "constructed language",
"label": "Constructed language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Constructed%20language",
"cluster": "19",
"x": 20.201797485351562,
"y": -836.646484375,
"score": 0.00584311681704871
},
{
"key": "endangered language",
"label": "Endangered language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Endangered%20language",
"cluster": "19",
"x": 610.4201049804688,
"y": -1265.57958984375,
"score": 0.0004226208063350024
},
{
"key": "extinct language",
"label": "Extinct language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Extinct%20language",
"cluster": "19",
"x": 601.51708984375,
"y": -1171.1044921875,
"score": 0.0001429067306321368
},
{
"key": "language death",
"label": "Language death",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Language%20death",
"cluster": "19",
"x": 590.4929809570312,
"y": -1263.2750244140625,
"score": 0.0006952687550184118
},
{
"key": "global language system",
"label": "Global language system",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Global%20language%20system",
"cluster": "19",
"x": 496.7047424316406,
"y": -1227.6268310546875,
"score": 0.00026370377835445403
},
{
"key": "proto-language (historical linguistics)",
"label": "Proto-language (historical linguistics)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Proto-language%20%28historical%20linguistics%29",
"cluster": "19",
"x": 394.06378173828125,
"y": -1013.0359497070312,
"score": 0.00017890670193173032
},
{
"key": "proto-human language",
"label": "Proto-Human language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Proto-Human%20language",
"cluster": "19",
"x": 316.417724609375,
"y": -1031.5992431640625,
"score": 0.00006060823186822491
},
{
"key": "unclassified language",
"label": "Unclassified language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Unclassified%20language",
"cluster": "19",
"x": 559.8035278320312,
"y": -1097.541015625,
"score": 0.0001218511058851773
},
{
"key": "historical linguistics",
"label": "Historical linguistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Historical%20linguistics",
"cluster": "19",
"x": 373.7210998535156,
"y": -1054.150634765625,
"score": 0
},
{
"key": "comparative linguistics",
"label": "Comparative linguistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Comparative%20linguistics",
"cluster": "19",
"x": 454.6783142089844,
"y": -1097.08056640625,
"score": 0
},
{
"key": "language isolate",
"label": "Language isolate",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Language%20isolate",
"cluster": "19",
"x": 555.1766357421875,
"y": -1153.306640625,
"score": 0
},
{
"key": "biolinguistics",
"label": "Biolinguistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Biolinguistics",
"cluster": "19",
"x": 307.0653991699219,
"y": -1047.6795654296875,
"score": 0
},
{
"key": "phylogenetic tree",
"label": "Phylogenetic tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Phylogenetic%20tree",
"cluster": "15",
"x": 517.79833984375,
"y": -929.38720703125,
"score": 0
},
{
"key": "lexicostatistics",
"label": "Lexicostatistics",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Lexicostatistics",
"cluster": "19",
"x": -163.01705932617188,
"y": -629.4994506835938,
"score": 0
},
{
"key": "proto-language",
"label": "Proto-language",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Proto-language",
"cluster": "19",
"x": 346.8216857910156,
"y": -1024.6937255859375,
"score": 0
},
{
"key": "datalog",
"label": "Datalog",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Datalog",
"cluster": "7",
"x": -420.7032775878906,
"y": -508.77197265625,
"score": 0.00026436425577523493
},
{
"key": "reachability",
"label": "Reachability",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Reachability",
"cluster": "4",
"x": 287.5516662597656,
"y": -637.5847778320312,
"score": 0
},
{
"key": "transitive closure",
"label": "Transitive closure",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Transitive%20closure",
"cluster": "4",
"x": 256.5393981933594,
"y": -758.6903686523438,
"score": 0.00002030403481614083
},
{
"key": "binary space partitioning",
"label": "Binary space partitioning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Binary%20space%20partitioning",
"cluster": "4",
"x": 849.1033325195312,
"y": -596.1015625,
"score": 0.0009446979960149815
},
{
"key": "bounding volume hierarchy",
"label": "Bounding volume hierarchy",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Bounding%20volume%20hierarchy",
"cluster": "4",
"x": 818.5838012695312,
"y": -589.8177490234375,
"score": 0.002922237544113654
},
{
"key": "brown clustering",
"label": "Brown clustering",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Brown%20clustering",
"cluster": "4",
"x": 644.9867553710938,
"y": -527.6826171875,
"score": 0
},
{
"key": "cluster analysis",
"label": "Cluster analysis",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Cluster%20analysis",
"cluster": "4",
"x": 391.1073303222656,
"y": -361.32684326171875,
"score": 0.0024147660870920255
},
{
"key": "computational phylogenetics",
"label": "Computational phylogenetics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20phylogenetics",
"cluster": "15",
"x": 591.9526977539062,
"y": -610.32470703125,
"score": 0.01735774593089035
},
{
"key": "cure data clustering algorithm",
"label": "CURE data clustering algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/CURE%20data%20clustering%20algorithm",
"cluster": "4",
"x": 642.5660400390625,
"y": -538.1322021484375,
"score": 0
},
{
"key": "determining the number of clusters in a data set",
"label": "Determining the number of clusters in a data set",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Determining%20the%20number%20of%20clusters%20in%20a%20data%20set",
"cluster": "4",
"x": 527.0065307617188,
"y": -459.62725830078125,
"score": 0
},
{
"key": "hierarchical clustering of networks",
"label": "Hierarchical clustering of networks",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20clustering%20of%20networks",
"cluster": "4",
"x": 500.212158203125,
"y": -521.3433837890625,
"score": 0.001175909508255498
},
{
"key": "locality-sensitive hashing",
"label": "Locality-sensitive hashing",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Locality-sensitive%20hashing",
"cluster": "4",
"x": 376.1282043457031,
"y": -330.9991149902344,
"score": 0.001581099563837878
},
{
"key": "nearest neighbor search",
"label": "Nearest neighbor search",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Nearest%20neighbor%20search",
"cluster": "4",
"x": 465.8026428222656,
"y": -288.708740234375,
"score": 0.0036493991814555288
},
{
"key": "numerical taxonomy",
"label": "Numerical taxonomy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Numerical%20taxonomy",
"cluster": "4",
"x": 564.6903076171875,
"y": -639.3377685546875,
"score": 0.001179008867470926
},
{
"key": "optics algorithm",
"label": "OPTICS algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/OPTICS%20algorithm",
"cluster": "6",
"x": 890.155029296875,
"y": 12.731932640075684,
"score": 0
},
{
"key": "statistical distance",
"label": "Statistical distance",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Statistical%20distance",
"cluster": "4",
"x": 568.5665283203125,
"y": -425.816650390625,
"score": 0
},
{
"key": "persistent homology",
"label": "Persistent homology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Persistent%20homology",
"cluster": "4",
"x": 633.4055786132812,
"y": -539.4898071289062,
"score": 0
},
{
"key": "kurepa tree",
"label": "Kurepa tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Kurepa%20tree",
"cluster": "4",
"x": 485.78662109375,
"y": -686.5958251953125,
"score": 0
},
{
"key": "laver tree",
"label": "Laver tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Laver%20tree",
"cluster": "4",
"x": 466.20281982421875,
"y": -695.1686401367188,
"score": 0
},
{
"key": "tree (descriptive set theory)",
"label": "Tree (descriptive set theory)",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Tree%20%28descriptive%20set%20theory%29",
"cluster": "4",
"x": 431.8933410644531,
"y": -677.61962890625,
"score": 0.0005109787842997658
},
{
"key": "hypertree",
"label": "Hypertree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Hypertree",
"cluster": "4",
"x": 535.9276733398438,
"y": -489.7192077636719,
"score": 0
},
{
"key": "unrooted binary tree",
"label": "Unrooted binary tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Unrooted%20binary%20tree",
"cluster": "4",
"x": 810.7046508789062,
"y": -481.6220397949219,
"score": 0
},
{
"key": "behavior tree (artificial intelligence, robotics and control)",
"label": "Behavior tree (artificial intelligence, robotics and control)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Behavior%20tree%20%28artificial%20intelligence%2C%20robotics%20and%20control%29",
"cluster": "16",
"x": 51.23191833496094,
"y": -53.347206115722656,
"score": 0.00035325105877509553
},
{
"key": "boosting (machine learning)",
"label": "Boosting (machine learning)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Boosting%20%28machine%20learning%29",
"cluster": "16",
"x": 538.5542602539062,
"y": 277.4903564453125,
"score": 0.005156831255749363
},
{
"key": "decision cycle",
"label": "Decision cycle",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Decision%20cycle",
"cluster": "10",
"x": 239.43130493164062,
"y": 666.6565551757812,
"score": 0.006254154777741675
},
{
"key": "decision list",
"label": "Decision list",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Decision%20list",
"cluster": "16",
"x": 335.5602111816406,
"y": -76.60675048828125,
"score": 0.00015620669673225667
},
{
"key": "decision table",
"label": "Decision table",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Decision%20table",
"cluster": "16",
"x": -192.65985107421875,
"y": -39.99335861206055,
"score": 0.004316264310985871
},
{
"key": "decision tree model",
"label": "Decision tree model",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Decision%20tree%20model",
"cluster": "16",
"x": -92.10061645507812,
"y": -410.23541259765625,
"score": 0.0020719254540220483
},
{
"key": "design rationale",
"label": "Design rationale",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Design%20rationale",
"cluster": "20",
"x": 3.90860915184021,
"y": 336.4949951171875,
"score": 0.001219067108741879
},
{
"key": "drakon",
"label": "DRAKON",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/DRAKON",
"cluster": "5",
"x": -402.64569091796875,
"y": 655.1260986328125,
"score": 0
},
{
"key": "markov chain",
"label": "Markov chain",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Markov%20chain",
"cluster": "18",
"x": 577.88037109375,
"y": 597.88134765625,
"score": 0.002246213475275396
},
{
"key": "random forest",
"label": "Random forest",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Random%20forest",
"cluster": "16",
"x": 492.03924560546875,
"y": 226.9278564453125,
"score": 0.002415303619937981
},
{
"key": "odds algorithm",
"label": "Odds algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Odds%20algorithm",
"cluster": "16",
"x": 173.30101013183594,
"y": -92.74720764160156,
"score": 0.0019615139762334294
},
{
"key": "topological combinatorics",
"label": "Topological combinatorics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Topological%20combinatorics",
"cluster": "0",
"x": 188.41099548339844,
"y": -1026.896728515625,
"score": 0.0007135539694672632
},
{
"key": "truth table",
"label": "Truth table",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Truth%20table",
"cluster": "3",
"x": -426.31585693359375,
"y": -1028.725341796875,
"score": 0.011613604786483994
},
{
"key": "b+ tree",
"label": "B+ tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/B%2B%20tree",
"cluster": "4",
"x": 1083.7540283203125,
"y": -568.489013671875,
"score": 0
},
{
"key": "r-tree",
"label": "R-tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/R-tree",
"cluster": "4",
"x": 893.6261596679688,
"y": -592.5349731445312,
"score": 0.0023330799300503606
},
{
"key": "red–black tree",
"label": "Red–black tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Red%E2%80%93black%20tree",
"cluster": "4",
"x": 1101.5341796875,
"y": -541.6307373046875,
"score": 0.0003922345574105419
},
{
"key": "2–3 tree",
"label": "2–3 tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/2%E2%80%933%20tree",
"cluster": "4",
"x": 1081.713134765625,
"y": -538.3057861328125,
"score": 0.00007821786940478836
},
{
"key": "2–3–4 tree",
"label": "2–3–4 tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/2%E2%80%933%E2%80%934%20tree",
"cluster": "4",
"x": 1039.65087890625,
"y": -529.50439453125,
"score": 0.00003765531263750464
},
{
"key": "cartography",
"label": "Cartography",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Cartography",
"cluster": "7",
"x": 205.96640014648438,
"y": 502.0666198730469,
"score": 0
},
{
"key": "computer-aided design",
"label": "Computer-aided design",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computer-aided%20design",
"cluster": "10",
"x": 470.032958984375,
"y": 854.808837890625,
"score": 0
},
{
"key": "computer graphics",
"label": "Computer graphics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computer%20graphics",
"cluster": "8",
"x": 671.0115966796875,
"y": 874.7772827148438,
"score": 0
},
{
"key": "exploratory data analysis",
"label": "Exploratory data analysis",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Exploratory%20data%20analysis",
"cluster": "6",
"x": 340.9304504394531,
"y": 554.6495971679688,
"score": 0.008884064405635958
},
{
"key": "geoinformatics",
"label": "Geoinformatics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Geoinformatics",
"cluster": "8",
"x": -24.319034576416016,
"y": 355.34039306640625,
"score": 0
},
{
"key": "image processing",
"label": "Image processing",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Image%20processing",
"cluster": "8",
"x": 633.4656982421875,
"y": 795.6337280273438,
"score": 0
},
{
"key": "signal processing",
"label": "Signal processing",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Signal%20processing",
"cluster": "6",
"x": 526.5436401367188,
"y": 460.2947998046875,
"score": 0
},
{
"key": "space mapping",
"label": "Space mapping",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Space%20mapping",
"cluster": "18",
"x": 30.30461311340332,
"y": 404.57867431640625,
"score": 0
},
{
"key": "cognition",
"label": "Cognition",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cognition",
"cluster": "18",
"x": 353.043701171875,
"y": 187.64523315429688,
"score": 0
},
{
"key": "cognitive robotics",
"label": "Cognitive robotics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20robotics",
"cluster": "18",
"x": 223.8614501953125,
"y": 53.35688781738281,
"score": 0
},
{
"key": "artificial intelligence",
"label": "Artificial intelligence",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Artificial%20intelligence",
"cluster": "18",
"x": 365.1165771484375,
"y": 411.4618835449219,
"score": 0
},
{
"key": "formal fallacy",
"label": "Formal fallacy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Formal%20fallacy",
"cluster": "14",
"x": 183.59153747558594,
"y": -162.52694702148438,
"score": 0
},
{
"key": "personal information management",
"label": "Personal information management",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Personal%20information%20management",
"cluster": "18",
"x": 209.70448303222656,
"y": 92.68804931640625,
"score": 0
},
{
"key": "taxonomy (biology)",
"label": "Taxonomy (biology)",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Taxonomy%20%28biology%29",
"cluster": "15",
"x": 492.7709655761719,
"y": -807.5087280273438,
"score": 0.00881550159019847
},
{
"key": "methodology",
"label": "methodology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/methodology",
"cluster": "7",
"x": 188.7590789794922,
"y": -397.94281005859375,
"score": 0.00004012190055625593
},
{
"key": "global biodiversity",
"label": "Global biodiversity",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Global%20biodiversity",
"cluster": "15",
"x": 597.5812377929688,
"y": -725.9423217773438,
"score": 0
},
{
"key": "phenetics",
"label": "Phenetics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Phenetics",
"cluster": "15",
"x": 520.6441650390625,
"y": -783.23486328125,
"score": 0.00018449452060005452
},
{
"key": "phylogeny",
"label": "Phylogeny",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Phylogeny",
"cluster": "15",
"x": 678.8300170898438,
"y": -757.751220703125,
"score": 0.0003209197557893916
},
{
"key": "phylogenetic comparative methods",
"label": "Phylogenetic comparative methods",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Phylogenetic%20comparative%20methods",
"cluster": "15",
"x": 674.5009765625,
"y": -586.5753784179688,
"score": 0.0055269797434169664
},
{
"key": "biodiversity",
"label": "biodiversity",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/biodiversity",
"cluster": "15",
"x": 770.2447509765625,
"y": -345.40496826171875,
"score": 0.00011130041760411372
},
{
"key": "clade",
"label": "Clade",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Clade",
"cluster": "15",
"x": 730.08837890625,
"y": -884.9166870117188,
"score": 0.00003136855288618033
},
{
"key": "haplotype",
"label": "Haplotype",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Haplotype",
"cluster": "15",
"x": 768.4527587890625,
"y": -957.6187133789062,
"score": 0
},
{
"key": "automated species identification",
"label": "Automated species identification",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Automated%20species%20identification",
"cluster": "15",
"x": 526.0171508789062,
"y": -892.4882202148438,
"score": 0
},
{
"key": "bacterial taxonomy",
"label": "Bacterial taxonomy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bacterial%20taxonomy",
"cluster": "15",
"x": 591.2159423828125,
"y": -873.7532348632812,
"score": 0.00012692561104268824
},
{
"key": "cladogram",
"label": "Cladogram",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cladogram",
"cluster": "15",
"x": 576.83154296875,
"y": -824.0825805664062,
"score": 0.000053233364188603886
},
{
"key": "consortium for the barcode of life",
"label": "Consortium for the Barcode of Life",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Consortium%20for%20the%20Barcode%20of%20Life",
"cluster": "15",
"x": 538.1236572265625,
"y": -872.3402099609375,
"score": 0
},
{
"key": "consortium of european taxonomic facilities",
"label": "Consortium of European Taxonomic Facilities",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Consortium%20of%20European%20Taxonomic%20Facilities",
"cluster": "15",
"x": 528.541748046875,
"y": -870.3175048828125,
"score": 0
},
{
"key": "genetypes",
"label": "Genetypes",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Genetypes",
"cluster": "15",
"x": 538.6987915039062,
"y": -917.0570068359375,
"score": 0.00007901951667540844
},
{
"key": "identification (biology)",
"label": "Identification (biology)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Identification%20%28biology%29",
"cluster": "15",
"x": 535.9554443359375,
"y": -902.5750122070312,
"score": 0.00007940125347094181
},
{
"key": "incertae sedis",
"label": "Incertae sedis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Incertae%20sedis",
"cluster": "15",
"x": 555.837646484375,
"y": -950.2114868164062,
"score": 0.000053709194565033576
},
{
"key": "open tree of life",
"label": "Open Tree of Life",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Open%20Tree%20of%20Life",
"cluster": "15",
"x": 520.12060546875,
"y": -876.22314453125,
"score": 0
},
{
"key": "parataxonomy",
"label": "Parataxonomy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Parataxonomy",
"cluster": "15",
"x": 416.4772644042969,
"y": -745.3355102539062,
"score": 0.00009493350966479956
},
{
"key": "phenogram",
"label": "Phenogram",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Phenogram",
"cluster": "15",
"x": 510.5155334472656,
"y": -882.3505249023438,
"score": 0
},
{
"key": "set theory",
"label": "Set theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Set%20theory",
"cluster": "15",
"x": 364.0361022949219,
"y": -634.1840209960938,
"score": 0.0025084199487137287
},
{
"key": "virus classification",
"label": "Virus classification",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Virus%20classification",
"cluster": "15",
"x": 570.2596435546875,
"y": -903.5493774414062,
"score": 0.0003066551512307124
},
{
"key": "binomial nomenclature",
"label": "Binomial nomenclature",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Binomial%20nomenclature",
"cluster": "15",
"x": 688.4509887695312,
"y": -965.3206176757812,
"score": 0
},
{
"key": "biological classification",
"label": "Biological classification",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Biological%20classification",
"cluster": "15",
"x": 686.81005859375,
"y": -935.7020874023438,
"score": 0
},
{
"key": "folk taxonomy",
"label": "Folk taxonomy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Folk%20taxonomy",
"cluster": "15",
"x": 323.7737121582031,
"y": -764.6181030273438,
"score": 0
},
{
"key": "citizen science",
"label": "Citizen science",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Citizen%20science",
"cluster": "20",
"x": 175.77133178710938,
"y": -318.6661682128906,
"score": 0
},
{
"key": "relational model",
"label": "Relational model",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Relational%20model",
"cluster": "3",
"x": -643.3650512695312,
"y": -623.777587890625,
"score": 0.004319698151777869
},
{
"key": "alpha taxonomy",
"label": "Alpha taxonomy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Alpha%20taxonomy",
"cluster": "15",
"x": 490.3638916015625,
"y": -848.5904541015625,
"score": 0.0017195418271236415
},
{
"key": "glossary of botanical terms",
"label": "Glossary of botanical terms",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Glossary%20of%20botanical%20terms",
"cluster": "15",
"x": 640.9251098632812,
"y": -980.8865966796875,
"score": 0
},
{
"key": "species description",
"label": "Species description",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Species%20description",
"cluster": "15",
"x": 666.1949462890625,
"y": -985.9443969726562,
"score": 0.000004730328392382459
},
{
"key": "distance matrices in phylogeny",
"label": "Distance matrices in phylogeny",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Distance%20matrices%20in%20phylogeny",
"cluster": "15",
"x": 566.8358764648438,
"y": -801.6034545898438,
"score": 0
},
{
"key": "freeware",
"label": "freeware",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/freeware",
"cluster": "20",
"x": 290.8801574707031,
"y": -560.873779296875,
"score": 0.0004141479623956757
},
{
"key": "yed",
"label": "yEd",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/yEd",
"cluster": "0",
"x": 439.9559020996094,
"y": -800.1146850585938,
"score": 0
},
{
"key": "dna barcoding",
"label": "DNA barcoding",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/DNA%20barcoding",
"cluster": "15",
"x": 565.4705200195312,
"y": -968.763427734375,
"score": 0
},
{
"key": "conceptual clustering",
"label": "Conceptual clustering",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Conceptual%20clustering",
"cluster": "4",
"x": 89.94078826904297,
"y": -316.7793273925781,
"score": 0
},
{
"key": "community structure",
"label": "Community structure",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Community%20structure",
"cluster": "4",
"x": 557.5174560546875,
"y": -249.46018981933594,
"score": 0
},
{
"key": "spectral clustering",
"label": "Spectral clustering",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Spectral%20clustering",
"cluster": "0",
"x": 340.4964904785156,
"y": -697.524658203125,
"score": 0
},
{
"key": "artificial neural network",
"label": "Artificial neural network",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Artificial%20neural%20network",
"cluster": "23",
"x": 308.72265625,
"y": -7.784684658050537,
"score": 0
},
{
"key": "dimension reduction",
"label": "Dimension reduction",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dimension%20reduction",
"cluster": "4",
"x": 583.6928100585938,
"y": -281.04327392578125,
"score": 0
},
{
"key": "principal component analysis",
"label": "Principal component analysis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Principal%20component%20analysis",
"cluster": "4",
"x": 407.6689147949219,
"y": -194.89930725097656,
"score": 0
},
{
"key": "curse of dimensionality",
"label": "Curse of dimensionality",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Curse%20of%20dimensionality",
"cluster": "4",
"x": 443.0003662109375,
"y": -354.7385559082031,
"score": 0
},
{
"key": "parallel coordinates",
"label": "Parallel coordinates",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Parallel%20coordinates",
"cluster": "4",
"x": 395.06768798828125,
"y": -103.57239532470703,
"score": 0
},
{
"key": "structured data analysis (statistics)",
"label": "Structured data analysis (statistics)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Structured%20data%20analysis%20%28statistics%29",
"cluster": "6",
"x": 289.2072448730469,
"y": 137.8653564453125,
"score": 0
},
{
"key": "phylogenetics",
"label": "Phylogenetics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Phylogenetics",
"cluster": "15",
"x": 704.1220092773438,
"y": -758.5117797851562,
"score": 0.016653369235882464
},
{
"key": "phylogenetic nomenclature",
"label": "Phylogenetic nomenclature",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Phylogenetic%20nomenclature",
"cluster": "15",
"x": 760.02783203125,
"y": -856.0792846679688,
"score": 0
},
{
"key": "megadiverse countries",
"label": "Megadiverse countries",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Megadiverse%20countries",
"cluster": "6",
"x": 951.4722290039062,
"y": 105.14795684814453,
"score": 0
},
{
"key": "allometry",
"label": "Allometry",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Allometry",
"cluster": "15",
"x": 774.301513671875,
"y": -581.3988647460938,
"score": 0
},
{
"key": "disk-covering method",
"label": "Disk-covering method",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Disk-covering%20method",
"cluster": "15",
"x": 683.8517456054688,
"y": -621.7410278320312,
"score": 0
},
{
"key": "generalized linear model",
"label": "Generalized linear model",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Generalized%20linear%20model",
"cluster": "6",
"x": 860.841064453125,
"y": 141.349365234375,
"score": 0
},
{
"key": "joe felsenstein",
"label": "Joe Felsenstein",
"tag": "Person",
"URL": "https://en.wikipedia.org/wiki/Joe%20Felsenstein",
"cluster": "15",
"x": 727.32275390625,
"y": -708.2125244140625,
"score": 0
},
{
"key": "maximum parsimony",
"label": "Maximum parsimony",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Maximum%20parsimony",
"cluster": "15",
"x": 736.79248046875,
"y": -713.0599975585938,
"score": 0
},
{
"key": "statistics",
"label": "Statistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Statistics",
"cluster": "7",
"x": 180.92086791992188,
"y": 324.9852600097656,
"score": 0.00013806658136950563
},
{
"key": "evolutionary taxonomy",
"label": "Evolutionary taxonomy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Evolutionary%20taxonomy",
"cluster": "15",
"x": 737.4171752929688,
"y": -799.55517578125,
"score": 0
},
{
"key": "scientific method",
"label": "Scientific method",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Scientific%20method",
"cluster": "7",
"x": -54.00397491455078,
"y": -233.5497589111328,
"score": 0
},
{
"key": "microbial ecology",
"label": "Microbial ecology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Microbial%20ecology",
"cluster": "15",
"x": 801.3639526367188,
"y": -896.9773559570312,
"score": 0
},
{
"key": "the ancestor's tale",
"label": "The Ancestor's Tale",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/The%20Ancestor%27s%20Tale",
"cluster": "15",
"x": 617.1939697265625,
"y": -989.9387817382812,
"score": 0.0000018476060903815305
},
{
"key": "biological applications of bifurcation theory",
"label": "Biological applications of bifurcation theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Biological%20applications%20of%20bifurcation%20theory",
"cluster": "15",
"x": 902.84375,
"y": -398.8270568847656,
"score": 0.000057141092192283125
},
{
"key": "biostatistics",
"label": "Biostatistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Biostatistics",
"cluster": "15",
"x": 781.0975952148438,
"y": -421.0331726074219,
"score": 0.00020736809484551099
},
{
"key": "entropy and life",
"label": "Entropy and life",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Entropy%20and%20life",
"cluster": "23",
"x": 723.7268676757812,
"y": -157.11529541015625,
"score": 0.00020395434572990155
},
{
"key": "ewens's sampling formula",
"label": "Ewens's sampling formula",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Ewens%27s%20sampling%20formula",
"cluster": "15",
"x": 848.542236328125,
"y": -548.9024658203125,
"score": 2.2904207732002446e-7
},
{
"key": "logistic function",
"label": "Logistic function",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Logistic%20function",
"cluster": "16",
"x": 662.0360717773438,
"y": -195.98373413085938,
"score": 0.0032015134897607116
},
{
"key": "mathematical modelling of infectious disease",
"label": "Mathematical modelling of infectious disease",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mathematical%20modelling%20of%20infectious%20disease",
"cluster": "15",
"x": 793.9319458007812,
"y": -161.28985595703125,
"score": 0.0000343748772520122
},
{
"key": "metabolic network modelling",
"label": "Metabolic network modelling",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Metabolic%20network%20modelling",
"cluster": "15",
"x": 977.7194213867188,
"y": -752.108154296875,
"score": 0.000730385783048051
},
{
"key": "molecular modelling",
"label": "Molecular modelling",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Molecular%20modelling",
"cluster": "15",
"x": 700.1041259765625,
"y": -253.11936950683594,
"score": 0.0021128145766025988
},
{
"key": "morphometrics",
"label": "Morphometrics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Morphometrics",
"cluster": "15",
"x": 796.4400024414062,
"y": -548.1397094726562,
"score": 0.0004711785177832894
},
{
"key": "population genetics",
"label": "Population genetics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Population%20genetics",
"cluster": "15",
"x": 754.2099609375,
"y": -543.8721313476562,
"score": 0
},
{
"key": "theoretical ecology",
"label": "Theoretical ecology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Theoretical%20ecology",
"cluster": "23",
"x": 861.5679931640625,
"y": -123.92837524414062,
"score": 0.000539545454778364
},
{
"key": "turing pattern",
"label": "Turing pattern",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Turing%20pattern",
"cluster": "15",
"x": 907.0065307617188,
"y": -460.0262145996094,
"score": 0.000040883732243908115
},
{
"key": "biodiversity informatics",
"label": "Biodiversity informatics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Biodiversity%20informatics",
"cluster": "15",
"x": 740.265380859375,
"y": -692.8155517578125,
"score": 0
},
{
"key": "bioinformatics companies",
"label": "Bioinformatics companies",
"tag": "List",
"URL": "https://en.wikipedia.org/wiki/Bioinformatics%20companies",
"cluster": "15",
"x": 749.4697265625,
"y": -695.6878662109375,
"score": 0
},
{
"key": "computational biology",
"label": "Computational biology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20biology",
"cluster": "15",
"x": 852.2936401367188,
"y": -571.698486328125,
"score": 0.0009091592066108445
},
{
"key": "computational biomodeling",
"label": "Computational biomodeling",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20biomodeling",
"cluster": "15",
"x": 933.4630737304688,
"y": -766.150634765625,
"score": 0.0005462271807287052
},
{
"key": "computational genomics",
"label": "Computational genomics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20genomics",
"cluster": "15",
"x": 789.8463745117188,
"y": -686.1704711914062,
"score": 0.001318911368599122
},
{
"key": "functional genomics",
"label": "Functional genomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Functional%20genomics",
"cluster": "15",
"x": 843.95166015625,
"y": -703.1119384765625,
"score": 0.0011083475462321667
},
{
"key": "health informatics",
"label": "Health informatics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Health%20informatics",
"cluster": "22",
"x": -111.04933166503906,
"y": -745.8187255859375,
"score": 0.0051008769742019976
},
{
"key": "international society for computational biology",
"label": "International Society for Computational Biology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/International%20Society%20for%20Computational%20Biology",
"cluster": "15",
"x": 789.572509765625,
"y": -649.5950927734375,
"score": 0
},
{
"key": "jumping library",
"label": "Jumping library",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Jumping%20library",
"cluster": "15",
"x": 717.154052734375,
"y": -677.08056640625,
"score": 1.4724133542001573e-7
},
{
"key": "metabolomics",
"label": "Metabolomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Metabolomics",
"cluster": "15",
"x": 873.7582397460938,
"y": -773.04638671875,
"score": 0.0003605087803607738
},
{
"key": "nucleic acid sequence",
"label": "Nucleic acid sequence",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Nucleic%20acid%20sequence",
"cluster": "15",
"x": 704.2080078125,
"y": -685.6676635742188,
"score": 0
},
{
"key": "proteomics",
"label": "Proteomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Proteomics",
"cluster": "15",
"x": 898.0567626953125,
"y": -734.421875,
"score": 0.0004356182448465077
},
{
"key": "gene disease database",
"label": "Gene Disease Database",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Gene%20Disease%20Database",
"cluster": "15",
"x": 740.2750244140625,
"y": -668.4918212890625,
"score": 0.0002785068406924954
},
{
"key": "microbial phylogenetics",
"label": "Microbial phylogenetics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Microbial%20phylogenetics",
"cluster": "15",
"x": 683.5718994140625,
"y": -714.9083862304688,
"score": 0
},
{
"key": "systems biology",
"label": "Systems biology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Systems%20biology",
"cluster": "15",
"x": 940.996337890625,
"y": -630.31689453125,
"score": 0
},
{
"key": "glycomics",
"label": "glycomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/glycomics",
"cluster": "15",
"x": 944.8905639648438,
"y": -792.42041015625,
"score": 0
},
{
"key": "european bioinformatics institute",
"label": "European Bioinformatics Institute",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/European%20Bioinformatics%20Institute",
"cluster": "15",
"x": 854.264404296875,
"y": -734.8873291015625,
"score": 0
},
{
"key": "pathology",
"label": "Pathology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Pathology",
"cluster": "6",
"x": 639.252685546875,
"y": -312.18572998046875,
"score": 0
},
{
"key": "structural bioinformatics",
"label": "Structural bioinformatics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Structural%20bioinformatics",
"cluster": "15",
"x": 764.255859375,
"y": -473.5837097167969,
"score": 0
},
{
"key": "genomics",
"label": "Genomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Genomics",
"cluster": "15",
"x": 912.3447875976562,
"y": -780.4529418945312,
"score": 0.0005722111044398456
},
{
"key": "epigenomics",
"label": "Epigenomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Epigenomics",
"cluster": "15",
"x": 925.14453125,
"y": -813.447509765625,
"score": 0
},
{
"key": "microarray",
"label": "Microarray",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Microarray",
"cluster": "15",
"x": 835.5786743164062,
"y": -735.1314086914062,
"score": 0
},
{
"key": "blast",
"label": "BLAST",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/BLAST",
"cluster": "7",
"x": 606.4055786132812,
"y": -359.1663513183594,
"score": 0.000022101403683214075
},
{
"key": "biosimulation",
"label": "Biosimulation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Biosimulation",
"cluster": "15",
"x": 974.9490966796875,
"y": -728.095703125,
"score": 0
},
{
"key": "mathematical biology",
"label": "Mathematical biology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mathematical%20biology",
"cluster": "15",
"x": 925.4811401367188,
"y": -459.7235107421875,
"score": 0
},
{
"key": "monte carlo method",
"label": "Monte Carlo method",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Monte%20Carlo%20method",
"cluster": "6",
"x": 757.4790649414062,
"y": -210.3600616455078,
"score": 0
},
{
"key": "structural genomics",
"label": "Structural genomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Structural%20genomics",
"cluster": "15",
"x": 889.501953125,
"y": -662.9107666015625,
"score": 0
},
{
"key": "butterfly effect",
"label": "Butterfly effect",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Butterfly%20effect",
"cluster": "23",
"x": 827.8235473632812,
"y": -111.43374633789062,
"score": 0
},
{
"key": "theoretical biology",
"label": "Theoretical biology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Theoretical%20biology",
"cluster": "15",
"x": 933.205322265625,
"y": -271.78375244140625,
"score": 0
},
{
"key": "continuity of care record",
"label": "Continuity of care record",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Continuity%20of%20care%20record",
"cluster": "22",
"x": -336.0017395019531,
"y": -723.6437377929688,
"score": 0
},
{
"key": "health information management",
"label": "Health information management",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Health%20information%20management",
"cluster": "22",
"x": -189.3554229736328,
"y": -816.4843139648438,
"score": 0
},
{
"key": "hrhis",
"label": "HRHIS",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/HRHIS",
"cluster": "22",
"x": -200.73338317871094,
"y": -818.5892944335938,
"score": 0
},
{
"key": "international classification of diseases",
"label": "International Classification of Diseases",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/International%20Classification%20of%20Diseases",
"cluster": "22",
"x": -292.80517578125,
"y": -704.674072265625,
"score": 0
},
{
"key": "nosology",
"label": "Nosology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Nosology",
"cluster": "22",
"x": -197.40353393554688,
"y": -807.5816650390625,
"score": 0
},
{
"key": "hl7",
"label": "HL7",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/HL7",
"cluster": "22",
"x": -239.537353515625,
"y": -816.885498046875,
"score": 0
},
{
"key": "openehr",
"label": "openEHR",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/openEHR",
"cluster": "22",
"x": -341.097900390625,
"y": -732.2918090820312,
"score": 0
},
{
"key": "snomed",
"label": "SNOMED",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/SNOMED",
"cluster": "22",
"x": -244.77008056640625,
"y": -824.7925415039062,
"score": 0
},
{
"key": "biological data visualization",
"label": "Biological data visualization",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Biological%20data%20visualization",
"cluster": "15",
"x": 1008.4359741210938,
"y": -814.4299926757812,
"score": 0
},
{
"key": "gillespie algorithm",
"label": "Gillespie algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Gillespie%20algorithm",
"cluster": "15",
"x": 1018.277587890625,
"y": -815.54638671875,
"score": 0
},
{
"key": "stochastic simulation",
"label": "Stochastic simulation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Stochastic%20simulation",
"cluster": "15",
"x": 1013.4443969726562,
"y": -804.0144653320312,
"score": 0
},
{
"key": "cheminformatics",
"label": "Cheminformatics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cheminformatics",
"cluster": "15",
"x": 124.05215454101562,
"y": -110.8077163696289,
"score": 0
},
{
"key": "comparison of nucleic acid simulation software",
"label": "Comparison of nucleic acid simulation software",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Comparison%20of%20nucleic%20acid%20simulation%20software",
"cluster": "15",
"x": 876.71337890625,
"y": -381.1754455566406,
"score": 0
},
{
"key": "molecular design software",
"label": "Molecular design software",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Molecular%20design%20software",
"cluster": "15",
"x": 883.5234985351562,
"y": -374.2041320800781,
"score": 0
},
{
"key": "molecular graphics",
"label": "Molecular graphics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Molecular%20graphics",
"cluster": "15",
"x": 394.64349365234375,
"y": 155.79066467285156,
"score": 0
},
{
"key": "simulated reality",
"label": "Simulated reality",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Simulated%20reality",
"cluster": "18",
"x": 550.474365234375,
"y": -36.053497314453125,
"score": 0.0030385257290850625
},
{
"key": "computational systems biology",
"label": "Computational systems biology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computational%20systems%20biology",
"cluster": "15",
"x": 1030.4630126953125,
"y": -800.9876098632812,
"score": 0.00001003967772252774
},
{
"key": "computer simulation",
"label": "Computer simulation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computer%20simulation",
"cluster": "15",
"x": 1034.4058837890625,
"y": -780.207275390625,
"score": 0
},
{
"key": "metabolic network",
"label": "Metabolic network",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Metabolic%20network",
"cluster": "15",
"x": 1019.65478515625,
"y": -757.5348510742188,
"score": 0
},
{
"key": "metabolic pathway",
"label": "Metabolic pathway",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Metabolic%20pathway",
"cluster": "15",
"x": 1020.8961181640625,
"y": -747.5509643554688,
"score": 0
},
{
"key": "metagenomics",
"label": "Metagenomics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Metagenomics",
"cluster": "15",
"x": 936.999755859375,
"y": -847.5296630859375,
"score": 0.00004466037802001893
},
{
"key": "mathematical and theoretical biology",
"label": "Mathematical and theoretical biology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mathematical%20and%20theoretical%20biology",
"cluster": "15",
"x": 891.2202758789062,
"y": -448.5843811035156,
"score": 0
},
{
"key": "disease surveillance",
"label": "Disease surveillance",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Disease%20surveillance",
"cluster": "15",
"x": 561.2984008789062,
"y": 50.879512786865234,
"score": 0
},
{
"key": "epidemiology",
"label": "Epidemiology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Epidemiology",
"cluster": "15",
"x": 481.33270263671875,
"y": 55.995330810546875,
"score": 0
},
{
"key": "logistic regression",
"label": "Logistic regression",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Logistic%20regression",
"cluster": "16",
"x": 575.3246459960938,
"y": -72.04829406738281,
"score": 0.0024061019688811575
},
{
"key": "abiogenesis",
"label": "Abiogenesis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Abiogenesis",
"cluster": "23",
"x": 537.3475341796875,
"y": -578.6400146484375,
"score": 0
},
{
"key": "complex systems",
"label": "Complex systems",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Complex%20systems",
"cluster": "23",
"x": 671.925537109375,
"y": -60.39138412475586,
"score": 0
},
{
"key": "dissipative system",
"label": "Dissipative system",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dissipative%20system",
"cluster": "23",
"x": 702.6688232421875,
"y": -12.276329040527344,
"score": 0
},
{
"key": "ecology",
"label": "ecology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/ecology",
"cluster": "23",
"x": 552.3323364257812,
"y": 298.3916015625,
"score": 0
},
{
"key": "dynamical system",
"label": "dynamical system",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/dynamical%20system",
"cluster": "23",
"x": 696.9672241210938,
"y": -5.091707706451416,
"score": 0
},
{
"key": "self-organization",
"label": "Self-organization",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Self-organization",
"cluster": "23",
"x": 618.3063354492188,
"y": -17.26692771911621,
"score": 0
},
{
"key": "origin of speech",
"label": "Origin of speech",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Origin%20of%20speech",
"cluster": "19",
"x": 270.757568359375,
"y": -917.5457153320312,
"score": 0
},
{
"key": "japhetic theory",
"label": "Japhetic theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Japhetic%20theory",
"cluster": "12",
"x": 477.8534851074219,
"y": -661.9022216796875,
"score": 0
},
{
"key": "universal language",
"label": "Universal language",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Universal%20language",
"cluster": "19",
"x": 315.9971008300781,
"y": -1077.70263671875,
"score": 0
},
{
"key": "linguistic imperialism",
"label": "Linguistic imperialism",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Linguistic%20imperialism",
"cluster": "19",
"x": 542.6414184570312,
"y": -1269.9814453125,
"score": 0
},
{
"key": "minority language",
"label": "Minority language",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Minority%20language",
"cluster": "19",
"x": 566.3609619140625,
"y": -1280.9312744140625,
"score": 0
},
{
"key": "international auxiliary language",
"label": "International auxiliary language",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/International%20auxiliary%20language",
"cluster": "19",
"x": 540.827392578125,
"y": -1279.53759765625,
"score": 0
},
{
"key": "lists of endangered languages",
"label": "Lists of endangered languages",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Lists%20of%20endangered%20languages",
"cluster": "19",
"x": 622.9773559570312,
"y": -1245.3829345703125,
"score": 0
},
{
"key": "lists of extinct languages",
"label": "Lists of extinct languages",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Lists%20of%20extinct%20languages",
"cluster": "19",
"x": 613.1612548828125,
"y": -1292.3101806640625,
"score": 0
},
{
"key": "language policy",
"label": "Language policy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Language%20policy",
"cluster": "19",
"x": 626.2431640625,
"y": -1288.9267578125,
"score": 0
},
{
"key": "language revitalization",
"label": "Language revitalization",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Language%20revitalization",
"cluster": "19",
"x": 619.8220825195312,
"y": -1300.0145263671875,
"score": 0
},
{
"key": "the linguists",
"label": "The Linguists",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/The%20Linguists",
"cluster": "19",
"x": 605.2398071289062,
"y": -1300.2275390625,
"score": 0
},
{
"key": "globalization",
"label": "Globalization",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Globalization",
"cluster": "12",
"x": 602.1511840820312,
"y": -769.8546142578125,
"score": 0
},
{
"key": "resolution (logic)",
"label": "Resolution (logic)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Resolution%20%28logic%29",
"cluster": "14",
"x": -337.93231201171875,
"y": -758.0574951171875,
"score": 0.0000764409784275412
},
{
"key": "argument mining",
"label": "Argument mining",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Argument%20mining",
"cluster": "14",
"x": -145.35183715820312,
"y": -398.347900390625,
"score": 0.00018729599327955157
},
{
"key": "parse tree",
"label": "Parse tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Parse%20tree",
"cluster": "5",
"x": -486.0906982421875,
"y": -71.14140319824219,
"score": 0.0009042922022266227
},
{
"key": "logical argument",
"label": "Logical argument",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Logical%20argument",
"cluster": "14",
"x": -95.88973236083984,
"y": -592.0445556640625,
"score": 0.0002231234156484104
},
{
"key": "toulmin model of argument",
"label": "Toulmin model of argument",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Toulmin%20model%20of%20argument",
"cluster": "14",
"x": -53.1623649597168,
"y": -545.2316284179688,
"score": 0.0000011528451225107897
},
{
"key": "argumentation theory",
"label": "Argumentation theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Argumentation%20theory",
"cluster": "14",
"x": -22.51511001586914,
"y": -500.5155944824219,
"score": 0.003750943547871681
},
{
"key": "defeater",
"label": "Defeater",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Defeater",
"cluster": "14",
"x": -180.4046173095703,
"y": -562.790771484375,
"score": 0
},
{
"key": "diagrammatic reasoning",
"label": "Diagrammatic reasoning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Diagrammatic%20reasoning",
"cluster": "14",
"x": -236.0788116455078,
"y": -448.9923095703125,
"score": 0.0014198418419558772
},
{
"key": "dialogical logic",
"label": "Dialogical logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dialogical%20logic",
"cluster": "14",
"x": -139.41812133789062,
"y": -580.8900756835938,
"score": 0
},
{
"key": "paraconsistent logic",
"label": "Paraconsistent logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Paraconsistent%20logic",
"cluster": "14",
"x": -277.3832702636719,
"y": -756.1531372070312,
"score": 0.000021199319877194694
},
{
"key": "abductive reasoning",
"label": "Abductive reasoning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Abductive%20reasoning",
"cluster": "14",
"x": -68.20063781738281,
"y": -408.2941589355469,
"score": 0
},
{
"key": "bayes' theorem",
"label": "Bayes' theorem",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bayes%27%20theorem",
"cluster": "14",
"x": 60.028526306152344,
"y": -488.1028747558594,
"score": 0
},
{
"key": "belief bias",
"label": "Belief bias",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Belief%20bias",
"cluster": "14",
"x": -127.09866333007812,
"y": -650.9790649414062,
"score": 0
},
{
"key": "boolean logic",
"label": "Boolean logic",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Boolean%20logic",
"cluster": "3",
"x": -427.1640930175781,
"y": -989.2059326171875,
"score": 0.001988519727801631
},
{
"key": "critical thinking",
"label": "Critical thinking",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Critical%20thinking",
"cluster": "14",
"x": 0.45263978838920593,
"y": -421.96478271484375,
"score": 0.008307317964460853
},
{
"key": "dialectic",
"label": "Dialectic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dialectic",
"cluster": "14",
"x": -49.390357971191406,
"y": -568.673828125,
"score": 0
},
{
"key": "evidence",
"label": "Evidence",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Evidence",
"cluster": "14",
"x": -115.53167724609375,
"y": -653.8389282226562,
"score": 0
},
{
"key": "evidence-based policy",
"label": "Evidence-based policy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Evidence-based%20policy",
"cluster": "14",
"x": -107.79261779785156,
"y": -645.9684448242188,
"score": 0
},
{
"key": "inquiry",
"label": "Inquiry",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Inquiry",
"cluster": "3",
"x": -131.12313842773438,
"y": -489.36376953125,
"score": 0.0006522670314822457
},
{
"key": "logical reasoning",
"label": "Logical reasoning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Logical%20reasoning",
"cluster": "14",
"x": -73.11178588867188,
"y": -556.2900390625,
"score": 0.00156894601897123
},
{
"key": "soundness theorem",
"label": "Soundness theorem",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Soundness%20theorem",
"cluster": "14",
"x": -127.84171295166016,
"y": -640.7935791015625,
"score": 0
},
{
"key": "syllogism",
"label": "Syllogism",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Syllogism",
"cluster": "14",
"x": -116.98643493652344,
"y": -640.3785400390625,
"score": 0
},
{
"key": "computational linguistics",
"label": "Computational linguistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20linguistics",
"cluster": "11",
"x": -674.1693725585938,
"y": -190.04258728027344,
"score": 0.0027392779638337477
},
{
"key": "parsing",
"label": "Parsing",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Parsing",
"cluster": "5",
"x": -374.325439453125,
"y": -46.34864807128906,
"score": 0
},
{
"key": "dynamic syntax tree",
"label": "Dynamic syntax tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dynamic%20syntax%20tree",
"cluster": "5",
"x": -510.5407409667969,
"y": -44.71272659301758,
"score": 0
},
{
"key": "mathematical logic",
"label": "Mathematical logic",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Mathematical%20logic",
"cluster": "14",
"x": -366.3573303222656,
"y": -709.2393188476562,
"score": 0.005820410893708605
},
{
"key": "sequent calculus",
"label": "Sequent calculus",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Sequent%20calculus",
"cluster": "14",
"x": -319.8312072753906,
"y": -729.2869262695312,
"score": 0.000005038925701040538
},
{
"key": "gerhard gentzen",
"label": "Gerhard Gentzen",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Gerhard%20Gentzen",
"cluster": "3",
"x": -378.999267578125,
"y": -865.9609375,
"score": 0.000029926337441666092
},
{
"key": "system l",
"label": "System L",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/System%20L",
"cluster": "14",
"x": -309.0660095214844,
"y": -692.2109375,
"score": 0
},
{
"key": "thesis, antithesis, synthesis",
"label": "Thesis, antithesis, synthesis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Thesis%2C%20antithesis%2C%20synthesis",
"cluster": "13",
"x": 49.24876022338867,
"y": -494.8551025390625,
"score": 0
},
{
"key": "argument",
"label": "Argument",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Argument",
"cluster": "14",
"x": -117.21973419189453,
"y": -592.73974609375,
"score": 0.008127251757787106
},
{
"key": "public sphere",
"label": "Public sphere",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Public%20sphere",
"cluster": "14",
"x": -135.2249755859375,
"y": -282.1449890136719,
"score": 0
},
{
"key": "rationality",
"label": "Rationality",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Rationality",
"cluster": "14",
"x": 0.8895027041435242,
"y": -609.8260498046875,
"score": 0
},
{
"key": "rogerian argument",
"label": "Rogerian argument",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Rogerian%20argument",
"cluster": "14",
"x": 160.4908905029297,
"y": -361.36029052734375,
"score": 0.0023438427254708367
},
{
"key": "social engineering (political science)",
"label": "Social engineering (political science)",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Social%20engineering%20%28political%20science%29",
"cluster": "14",
"x": 20.07168960571289,
"y": -588.5023803710938,
"score": 0
},
{
"key": "social psychology",
"label": "Social psychology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Social%20psychology",
"cluster": "12",
"x": 265.4263916015625,
"y": -362.3341979980469,
"score": 0
},
{
"key": "source criticism",
"label": "Source criticism",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Source%20criticism",
"cluster": "14",
"x": 61.457820892333984,
"y": -365.16473388671875,
"score": 0.00010735160433756001
},
{
"key": "straight and crooked thinking",
"label": "Straight and Crooked Thinking",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Straight%20and%20Crooked%20Thinking",
"cluster": "14",
"x": -3.4582531452178955,
"y": -570.5200805664062,
"score": 0
},
{
"key": "inductive logic programming",
"label": "Inductive logic programming",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Inductive%20logic%20programming",
"cluster": "14",
"x": -302.5952453613281,
"y": -544.181884765625,
"score": 0
},
{
"key": "method of analytic tableaux",
"label": "Method of analytic tableaux",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Method%20of%20analytic%20tableaux",
"cluster": "14",
"x": -381.75341796875,
"y": -884.3775634765625,
"score": 0.00013428464266182299
},
{
"key": "informal logic",
"label": "Informal logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Informal%20logic",
"cluster": "14",
"x": -241.07286071777344,
"y": -688.646728515625,
"score": 0
},
{
"key": "logic",
"label": "Logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Logic",
"cluster": "14",
"x": -166.49928283691406,
"y": -706.8087768554688,
"score": 0.0010656096038574449
},
{
"key": "mereology",
"label": "Mereology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mereology",
"cluster": "14",
"x": -583.0104370117188,
"y": -542.95703125,
"score": 0
},
{
"key": "propositional calculus",
"label": "Propositional calculus",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Propositional%20calculus",
"cluster": "3",
"x": -463.2345886230469,
"y": -1010.595703125,
"score": 0.012869458379337066
},
{
"key": "well-formed formula",
"label": "Well-formed formula",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Well-formed%20formula",
"cluster": "14",
"x": -382.1535339355469,
"y": -493.10302734375,
"score": 0
},
{
"key": "fallacy",
"label": "Fallacy",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Fallacy",
"cluster": "14",
"x": -5.104236602783203,
"y": -534.6674194335938,
"score": 0.000008406381542620749
},
{
"key": "bertrand russell",
"label": "Bertrand Russell",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bertrand%20Russell",
"cluster": "3",
"x": -447.95806884765625,
"y": -1041.29736328125,
"score": 0
},
{
"key": "collaborative software",
"label": "Collaborative software",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Collaborative%20software",
"cluster": "20",
"x": -235.62278747558594,
"y": 85.8759765625,
"score": 0.011710637802212166
},
{
"key": "computational sociology",
"label": "Computational sociology",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Computational%20sociology",
"cluster": "18",
"x": 432.0911865234375,
"y": 54.72831344604492,
"score": 0.005600102821528992
},
{
"key": "creative problem solving",
"label": "Creative problem solving",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Creative%20problem%20solving",
"cluster": "20",
"x": 211.01083374023438,
"y": -49.97298812866211,
"score": 0.002584804904219392
},
{
"key": "deliberation",
"label": "Deliberation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Deliberation",
"cluster": "14",
"x": -6.341649532318115,
"y": -136.2949981689453,
"score": 0.0011582050520460828
},
{
"key": "dialogue",
"label": "Dialogue",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Dialogue",
"cluster": "14",
"x": 130.06240844726562,
"y": -359.70440673828125,
"score": 0.002866542896189877
},
{
"key": "knowledge base",
"label": "Knowledge base",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Knowledge%20base",
"cluster": "21",
"x": -504.7402648925781,
"y": -129.24459838867188,
"score": 0.009740123806042634
},
{
"key": "socratic questioning",
"label": "Socratic questioning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Socratic%20questioning",
"cluster": "14",
"x": -13.577463150024414,
"y": -229.32594299316406,
"score": 0.0016639766073307924
},
{
"key": "why–because analysis",
"label": "Why–because analysis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Why%E2%80%93because%20analysis",
"cluster": "14",
"x": 231.4344024658203,
"y": 345.70611572265625,
"score": 0.0016949333112667951
},
{
"key": "accident",
"label": "Accident",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Accident",
"cluster": "14",
"x": 386.9727783203125,
"y": 622.6305541992188,
"score": 0.0002802154347054614
},
{
"key": "cause–effect graph",
"label": "Cause–effect graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Cause%E2%80%93effect%20graph",
"cluster": "16",
"x": 110.84503173828125,
"y": 192.39144897460938,
"score": 0.00226704050885837
},
{
"key": "fault tree analysis",
"label": "Fault tree analysis",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Fault%20tree%20analysis",
"cluster": "14",
"x": 333.5303039550781,
"y": 679.9235229492188,
"score": 0.0022962332522536515
},
{
"key": "five whys",
"label": "Five whys",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Five%20whys",
"cluster": "14",
"x": 297.92596435546875,
"y": 456.2310485839844,
"score": 0.001737250729169896
},
{
"key": "ishikawa diagram",
"label": "Ishikawa diagram",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Ishikawa%20diagram",
"cluster": "14",
"x": 361.7636413574219,
"y": 589.5752563476562,
"score": 0.011993322893231618
},
{
"key": "issue map",
"label": "Issue map",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Issue%20map",
"cluster": "14",
"x": 84.79060363769531,
"y": 70.12776947021484,
"score": 0.017185537688074022
},
{
"key": "root cause analysis",
"label": "Root cause analysis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Root%20cause%20analysis",
"cluster": "14",
"x": 311.1863098144531,
"y": 534.0302124023438,
"score": 0
},
{
"key": "intellectual virtue",
"label": "Intellectual virtue",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Intellectual%20virtue",
"cluster": "14",
"x": -101.61311340332031,
"y": -385.1226501464844,
"score": 0.00006117950383443399
},
{
"key": "interrogation",
"label": "Interrogation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Interrogation",
"cluster": "14",
"x": 0.3727656900882721,
"y": -269.9084777832031,
"score": 0
},
{
"key": "lifelog",
"label": "Lifelog",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Lifelog",
"cluster": "14",
"x": -306.21539306640625,
"y": -150.31387329101562,
"score": 0
},
{
"key": "comparison of notetaking software",
"label": "Comparison of notetaking software",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Comparison%20of%20notetaking%20software",
"cluster": "14",
"x": -405.4622497558594,
"y": -9.981081008911133,
"score": 0.0011070327824860475
},
{
"key": "content management",
"label": "Content management",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Content%20management",
"cluster": "21",
"x": -368.0027160644531,
"y": 301.4231872558594,
"score": 0.0035327649375338404
},
{
"key": "database",
"label": "Database",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Database",
"cluster": "7",
"x": -685.114013671875,
"y": -285.8712158203125,
"score": 0.0002738975152192368
},
{
"key": "information repository",
"label": "Information repository",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Information%20repository",
"cluster": "21",
"x": -513.26611328125,
"y": 39.43077850341797,
"score": 0
},
{
"key": "knowledge-based system",
"label": "Knowledge-based system",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Knowledge-based%20system",
"cluster": "21",
"x": -571.2977294921875,
"y": -221.47784423828125,
"score": 0.0006686851815983485
},
{
"key": "microsoft knowledge base",
"label": "Microsoft Knowledge Base",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Microsoft%20Knowledge%20Base",
"cluster": "21",
"x": -563.4867553710938,
"y": -154.01278686523438,
"score": 0
},
{
"key": "diffbot",
"label": "Diffbot",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Diffbot",
"cluster": "21",
"x": -563.9791870117188,
"y": -161.53009033203125,
"score": 0
},
{
"key": "text mining",
"label": "Text mining",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Text%20mining",
"cluster": "11",
"x": -536.8505249023438,
"y": 24.87169647216797,
"score": 0.0012726752884075205
},
{
"key": "horizon scanning",
"label": "Horizon scanning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Horizon%20scanning",
"cluster": "8",
"x": 557.8566284179688,
"y": 834.1770629882812,
"score": 0.001162987602287685
},
{
"key": "collaborative leadership",
"label": "Collaborative leadership",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Collaborative%20leadership",
"cluster": "20",
"x": -101.74002075195312,
"y": -140.69728088378906,
"score": 0.00010469882032001854
},
{
"key": "dialogical self",
"label": "Dialogical self",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dialogical%20self",
"cluster": "14",
"x": 189.9735107421875,
"y": -432.2958984375,
"score": 0.00004906079239866572
},
{
"key": "dialogue among civilizations",
"label": "Dialogue Among Civilizations",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dialogue%20Among%20Civilizations",
"cluster": "14",
"x": 233.14990234375,
"y": -645.4938354492188,
"score": 0.0003165361508562738
},
{
"key": "intercultural dialogue",
"label": "Intercultural dialogue",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Intercultural%20dialogue",
"cluster": "14",
"x": 216.96737670898438,
"y": -484.1136474609375,
"score": 0
},
{
"key": "interfaith dialogue",
"label": "Interfaith dialogue",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Interfaith%20dialogue",
"cluster": "14",
"x": 232.06463623046875,
"y": -623.8633422851562,
"score": 0.00031676519293359385
},
{
"key": "intergroup dialogue",
"label": "Intergroup dialogue",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Intergroup%20dialogue",
"cluster": "14",
"x": 225.93429565429688,
"y": -371.3324890136719,
"score": 0.00014689164282802878
},
{
"key": "speech",
"label": "Speech",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Speech",
"cluster": "19",
"x": 209.96961975097656,
"y": -779.60595703125,
"score": 0.00034104265884556193
},
{
"key": "low-information rationality",
"label": "Low-information rationality",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Low-information%20rationality",
"cluster": "14",
"x": -15.725920677185059,
"y": -157.8210906982422,
"score": 0
},
{
"key": "age of enlightenment",
"label": "Age of Enlightenment",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Age%20of%20Enlightenment",
"cluster": "14",
"x": 27.253028869628906,
"y": -464.47528076171875,
"score": 0
},
{
"key": "cognitive bias mitigation",
"label": "Cognitive bias mitigation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20bias%20mitigation",
"cluster": "14",
"x": 24.58072280883789,
"y": -544.0581665039062,
"score": 0.00023478679666419605
},
{
"key": "critic",
"label": "Critic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Critic",
"cluster": "14",
"x": 5.457807540893555,
"y": -469.3576965332031,
"score": 0.00028578806362755535
},
{
"key": "demarcation problem",
"label": "Demarcation problem",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Demarcation%20problem",
"cluster": "14",
"x": -32.29482650756836,
"y": -660.6504516601562,
"score": 0.00021572280824132386
},
{
"key": "disinformation",
"label": "Disinformation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Disinformation",
"cluster": "14",
"x": 26.53870964050293,
"y": -562.29443359375,
"score": 0.00004029726739032824
},
{
"key": "freedom of thought",
"label": "Freedom of thought",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Freedom%20of%20thought",
"cluster": "14",
"x": 133.66036987304688,
"y": -460.4498291015625,
"score": 0.0001765787034447329
},
{
"key": "freethought",
"label": "Freethought",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Freethought",
"cluster": "14",
"x": 92.4478988647461,
"y": -509.85723876953125,
"score": 0
},
{
"key": "indoctrination",
"label": "Indoctrination",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Indoctrination",
"cluster": "18",
"x": -25.606271743774414,
"y": -310.0511779785156,
"score": 0.00011323895154326144
},
{
"key": "philosophy education",
"label": "Philosophy education",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Philosophy%20education",
"cluster": "14",
"x": 92.08395385742188,
"y": -241.26129150390625,
"score": 0.00007039140889435777
},
{
"key": "sapere aude",
"label": "Sapere aude",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Sapere%20aude",
"cluster": "14",
"x": 24.455753326416016,
"y": -473.2673645019531,
"score": 0
},
{
"key": "world philosophy day",
"label": "World Philosophy Day",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/World%20Philosophy%20Day",
"cluster": "14",
"x": 50.73008728027344,
"y": -355.0745544433594,
"score": 0
},
{
"key": "creativity",
"label": "Creativity",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Creativity",
"cluster": "20",
"x": 209.5571746826172,
"y": -186.0853271484375,
"score": 0.0003577617935645706
},
{
"key": "collective problem solving",
"label": "Collective problem solving",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Collective%20problem%20solving",
"cluster": "20",
"x": 130.26785278320312,
"y": -6.3630051612854,
"score": 0.00022317775040967577
},
{
"key": "frugal innovation",
"label": "Frugal innovation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Frugal%20innovation",
"cluster": "20",
"x": 277.55877685546875,
"y": -174.20150756835938,
"score": 0
},
{
"key": "invention",
"label": "Invention",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Invention",
"cluster": "20",
"x": 234.4007568359375,
"y": -221.7591552734375,
"score": 0.0003854007484207904
},
{
"key": "lateral thinking",
"label": "Lateral thinking",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Lateral%20thinking",
"cluster": "20",
"x": 136.78683471679688,
"y": -241.49459838867188,
"score": 0.0034535887468056534
},
{
"key": "problem structuring methods",
"label": "Problem structuring methods",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Problem%20structuring%20methods",
"cluster": "20",
"x": 92.70003509521484,
"y": 112.60986328125,
"score": 0.0004932015714248971
},
{
"key": "journal of artificial societies and social simulation",
"label": "Journal of Artificial Societies and Social Simulation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Journal%20of%20Artificial%20Societies%20and%20Social%20Simulation",
"cluster": "18",
"x": 573.185546875,
"y": 27.195194244384766,
"score": 0
},
{
"key": "artificial society",
"label": "Artificial society",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Artificial%20society",
"cluster": "18",
"x": 576.6781616210938,
"y": 61.846805572509766,
"score": 0.004145208683963925
},
{
"key": "social simulation",
"label": "Social simulation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Social%20simulation",
"cluster": "18",
"x": 538.781982421875,
"y": 23.6232967376709,
"score": 0.0014083239626850653
},
{
"key": "agent-based social simulation",
"label": "Agent-based social simulation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Agent-based%20social%20simulation",
"cluster": "18",
"x": 592.5197143554688,
"y": 10.842021942138672,
"score": 0.000049145939120862806
},
{
"key": "social complexity",
"label": "Social complexity",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Social%20complexity",
"cluster": "23",
"x": 570.97900390625,
"y": 137.78146362304688,
"score": 0.0009555997736074202
},
{
"key": "computational economics",
"label": "Computational economics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computational%20economics",
"cluster": "18",
"x": 308.4212951660156,
"y": 67.62569427490234,
"score": 0
},
{
"key": "cliodynamics",
"label": "Cliodynamics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cliodynamics",
"cluster": "18",
"x": 525.1804809570312,
"y": 47.71537399291992,
"score": 0
},
{
"key": "predictive analytics",
"label": "Predictive analytics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Predictive%20analytics",
"cluster": "7",
"x": 226.76535034179688,
"y": 261.2556457519531,
"score": 0.021920791611170512
},
{
"key": "collaboration technologies",
"label": "Collaboration technologies",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Collaboration%20technologies",
"cluster": "20",
"x": -127.46965789794922,
"y": -11.511759757995605,
"score": 0.0005352123339560613
},
{
"key": "telecommuting",
"label": "Telecommuting",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Telecommuting",
"cluster": "20",
"x": -356.6900939941406,
"y": 154.3782958984375,
"score": 0.0006195222024107791
},
{
"key": "computer supported cooperative work",
"label": "Computer supported cooperative work",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computer%20supported%20cooperative%20work",
"cluster": "20",
"x": -159.83172607421875,
"y": 32.132022857666016,
"score": 0.0002106661402672048
},
{
"key": "integrated collaboration environment",
"label": "Integrated collaboration environment",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Integrated%20collaboration%20environment",
"cluster": "20",
"x": -181.16734313964844,
"y": 104.65419006347656,
"score": 0
},
{
"key": "content management system",
"label": "Content management system",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Content%20management%20system",
"cluster": "21",
"x": -465.2863464355469,
"y": 258.9842529296875,
"score": 0.0026223964143201658
},
{
"key": "customer relationship management",
"label": "Customer relationship management",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Customer%20relationship%20management",
"cluster": "13",
"x": -241.19418334960938,
"y": 290.16607666015625,
"score": 0.0002105726486310893
},
{
"key": "document management system",
"label": "Document management system",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Document%20management%20system",
"cluster": "21",
"x": -451.30029296875,
"y": 186.3416748046875,
"score": 0.0019712154845872155
},
{
"key": "enterprise content management",
"label": "Enterprise content management",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Enterprise%20content%20management",
"cluster": "21",
"x": -463.0508117675781,
"y": 327.02740478515625,
"score": 0.0007767067305591066
},
{
"key": "intranet",
"label": "Intranet",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Intranet",
"cluster": "20",
"x": -320.2187805175781,
"y": 140.029296875,
"score": 0.00007928673243228179
},
{
"key": "massively distributed collaboration",
"label": "Massively distributed collaboration",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Massively%20distributed%20collaboration",
"cluster": "20",
"x": -193.7103729248047,
"y": -87.39185333251953,
"score": 0.00023973198150906798
},
{
"key": "online consultation",
"label": "Online consultation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Online%20consultation",
"cluster": "20",
"x": -287.18548583984375,
"y": 132.9029083251953,
"score": 0.00007860549760348694
},
{
"key": "online deliberation",
"label": "Online deliberation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Online%20deliberation",
"cluster": "20",
"x": -211.2723846435547,
"y": -27.282617568969727,
"score": 0.00023377617961615007
},
{
"key": "collaborative innovation network",
"label": "Collaborative innovation network",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Collaborative%20innovation%20network",
"cluster": "20",
"x": 154.4546356201172,
"y": -24.791973114013672,
"score": 0.004754265377972539
},
{
"key": "commons-based peer production",
"label": "Commons-based peer production",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Commons-based%20peer%20production",
"cluster": "20",
"x": -105.77965545654297,
"y": -54.648223876953125,
"score": 0.0005665199178899334
},
{
"key": "electronic business",
"label": "Electronic business",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Electronic%20business",
"cluster": "20",
"x": -265.8646240234375,
"y": 114.04771423339844,
"score": 0
},
{
"key": "information technology management",
"label": "Information technology management",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Information%20technology%20management",
"cluster": "21",
"x": -304.2309265136719,
"y": 206.63229370117188,
"score": 0.00003242445074346513
},
{
"key": "management information systems",
"label": "Management information systems",
"tag": "Technology",
"URL": "https://en.wikipedia.org/wiki/Management%20information%20systems",
"cluster": "7",
"x": -382.8332824707031,
"y": 399.9629821777344,
"score": 0.0033043987691922408
},
{
"key": "management",
"label": "Management",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Management",
"cluster": "12",
"x": -88.21586608886719,
"y": 402.3782958984375,
"score": 0.00004860983380811084
},
{
"key": "office of the future",
"label": "Office of the future",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Office%20of%20the%20future",
"cluster": "14",
"x": -304.4315490722656,
"y": -21.792253494262695,
"score": 0.000027209443701847524
},
{
"key": "operational transformation",
"label": "Operational transformation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Operational%20transformation",
"cluster": "20",
"x": -256.1534423828125,
"y": 120.77513885498047,
"score": 0
},
{
"key": "organizational memory system",
"label": "Organizational Memory System",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Organizational%20Memory%20System",
"cluster": "23",
"x": -345.477294921875,
"y": 10.097655296325684,
"score": 0.000018599504388588705
},
{
"key": "cloud collaboration",
"label": "Cloud collaboration",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cloud%20collaboration",
"cluster": "20",
"x": -293.8195495605469,
"y": 113.9211196899414,
"score": 0
},
{
"key": "document collaboration",
"label": "Document collaboration",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Document%20collaboration",
"cluster": "20",
"x": -299.2990417480469,
"y": 107.21072387695312,
"score": 0
},
{
"key": "mediawiki",
"label": "MediaWiki",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/MediaWiki",
"cluster": "20",
"x": -597.6998291015625,
"y": -128.4211883544922,
"score": 0.00004452581709679876
},
{
"key": "wikipedia",
"label": "Wikipedia",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Wikipedia",
"cluster": "1",
"x": -21.802650451660156,
"y": -253.0443878173828,
"score": 0.0013202483713412802
},
{
"key": "bayesian epistemology",
"label": "Bayesian epistemology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bayesian%20epistemology",
"cluster": "18",
"x": 327.71612548828125,
"y": -241.4223175048828,
"score": 0.00009429393871468213
},
{
"key": "bayesian programming",
"label": "Bayesian programming",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bayesian%20programming",
"cluster": "18",
"x": 381.6052551269531,
"y": -57.0751838684082,
"score": 0.0006078684433642984
},
{
"key": "causal inference",
"label": "Causal inference",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Causal%20inference",
"cluster": "6",
"x": 425.824951171875,
"y": 109.59223175048828,
"score": 0.0015482297944126985
},
{
"key": "chow–liu tree",
"label": "Chow–Liu tree",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Chow%E2%80%93Liu%20tree",
"cluster": "18",
"x": 100.2029037475586,
"y": -158.07421875,
"score": 0.002301782951179216
},
{
"key": "computational intelligence",
"label": "Computational intelligence",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Computational%20intelligence",
"cluster": "18",
"x": 135.79075622558594,
"y": 69.8171157836914,
"score": 0.003653285580027964
},
{
"key": "deep belief network",
"label": "Deep belief network",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Deep%20belief%20network",
"cluster": "18",
"x": 257.7744445800781,
"y": -65.85388946533203,
"score": 0.00003089340994801338
},
{
"key": "dempster–shafer theory",
"label": "Dempster–Shafer theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Dempster%E2%80%93Shafer%20theory",
"cluster": "18",
"x": 327.7948303222656,
"y": -180.631103515625,
"score": 0.00015492915019414322
},
{
"key": "expectation–maximization algorithm",
"label": "Expectation–maximization algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Expectation%E2%80%93maximization%20algorithm",
"cluster": "6",
"x": 771.6318969726562,
"y": 399.8673400878906,
"score": 0.006575131524531589
},
{
"key": "factor graph",
"label": "Factor graph",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Factor%20graph",
"cluster": "18",
"x": 343.65283203125,
"y": -146.9622802734375,
"score": 0.002807190008471968
},
{
"key": "kalman filter",
"label": "Kalman filter",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Kalman%20filter",
"cluster": "18",
"x": 221.3415985107422,
"y": 167.55430603027344,
"score": 0.0003548627996970502
},
{
"key": "memory-prediction framework",
"label": "Memory-prediction framework",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Memory-prediction%20framework",
"cluster": "18",
"x": 181.96286010742188,
"y": -201.2032470703125,
"score": 0.0001481001718898081
},
{
"key": "mixture distribution",
"label": "Mixture distribution",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mixture%20distribution",
"cluster": "6",
"x": 751.3353271484375,
"y": 399.6007080078125,
"score": 0.00047065922096902
},
{
"key": "mixture model",
"label": "Mixture model",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mixture%20model",
"cluster": "6",
"x": 656.6648559570312,
"y": 301.4402160644531,
"score": 0.00016459100823727356
},
{
"key": "naive bayes classifier",
"label": "Naive Bayes classifier",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Naive%20Bayes%20classifier",
"cluster": "18",
"x": 465.3830261230469,
"y": -53.123348236083984,
"score": 0.00047654988522424384
},
{
"key": "polytree",
"label": "Polytree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Polytree",
"cluster": "18",
"x": 407.5200500488281,
"y": -382.1473083496094,
"score": 0.0001663918666399193
},
{
"key": "sensor fusion",
"label": "Sensor fusion",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Sensor%20fusion",
"cluster": "11",
"x": -357.7998046875,
"y": 278.97784423828125,
"score": 0.007318452920150052
},
{
"key": "sequence alignment",
"label": "Sequence alignment",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Sequence%20alignment",
"cluster": "7",
"x": 438.61724853515625,
"y": -154.03631591796875,
"score": 0.0001489148701176384
},
{
"key": "subjective logic",
"label": "Subjective logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Subjective%20logic",
"cluster": "18",
"x": 378.7928771972656,
"y": -109.89579010009766,
"score": 0
},
{
"key": "variable-order bayesian network",
"label": "Variable-order Bayesian network",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Variable-order%20Bayesian%20network",
"cluster": "18",
"x": 591.4418334960938,
"y": 513.4057006835938,
"score": 0.0009447663715393342
},
{
"key": "decisional balance",
"label": "Decisional balance",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Decisional%20balance",
"cluster": "14",
"x": 340.3025207519531,
"y": 382.5154113769531,
"score": 0.00003520160780282655
},
{
"key": "design pattern",
"label": "Design pattern",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Design%20pattern",
"cluster": "20",
"x": 48.692527770996094,
"y": 710.21826171875,
"score": 0.0002929933329313997
},
{
"key": "heuristic",
"label": "Heuristic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Heuristic",
"cluster": "14",
"x": 256.56134033203125,
"y": 651.5057373046875,
"score": 0.00021343040281216057
},
{
"key": "pattern language",
"label": "Pattern language",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Pattern%20language",
"cluster": "23",
"x": 437.9053955078125,
"y": 397.3950500488281,
"score": 0.0011408411247830644
},
{
"key": "pedagogical pattern",
"label": "Pedagogical pattern",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Pedagogical%20pattern",
"cluster": "14",
"x": 293.35308837890625,
"y": 487.6390686035156,
"score": 0
},
{
"key": "rule of thumb",
"label": "Rule of thumb",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Rule%20of%20thumb",
"cluster": "14",
"x": 351.0797119140625,
"y": 525.4091186523438,
"score": 0.00020407490653175637
},
{
"key": "method engineering",
"label": "Method engineering",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Method%20engineering",
"cluster": "20",
"x": -128.46534729003906,
"y": 474.6383972167969,
"score": 0.0014320775192154362
},
{
"key": "algorithm",
"label": "Algorithm",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Algorithm",
"cluster": "14",
"x": -22.79885482788086,
"y": 777.622314453125,
"score": 0
},
{
"key": "failure mode and effects analysis",
"label": "Failure mode and effects analysis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Failure%20mode%20and%20effects%20analysis",
"cluster": "14",
"x": 355.8829650878906,
"y": 758.8260498046875,
"score": 0
},
{
"key": "heuristics in judgment and decision-making",
"label": "Heuristics in judgment and decision-making",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Heuristics%20in%20judgment%20and%20decision-making",
"cluster": "7",
"x": 207.9443817138672,
"y": 585.9384765625,
"score": 0
},
{
"key": "style guide",
"label": "Style guide",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Style%20guide",
"cluster": "20",
"x": 33.00246810913086,
"y": 762.7662353515625,
"score": 0
},
{
"key": "anti-pattern",
"label": "Anti-pattern",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Anti-pattern",
"cluster": "8",
"x": 16.24884033203125,
"y": 988.4890747070312,
"score": 0
},
{
"key": "immunity to change",
"label": "Immunity to change",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Immunity%20to%20change",
"cluster": "14",
"x": 297.96185302734375,
"y": 180.1795196533203,
"score": 0
},
{
"key": "issue mapping",
"label": "Issue mapping",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Issue%20mapping",
"cluster": "14",
"x": 381.096435546875,
"y": 461.2628479003906,
"score": 0
},
{
"key": "examples of markov chains",
"label": "Examples of Markov chains",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Examples%20of%20Markov%20chains",
"cluster": "18",
"x": 660.1629028320312,
"y": 594.8531494140625,
"score": 0
},
{
"key": "markov process",
"label": "Markov process",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Markov%20process",
"cluster": "18",
"x": 667.8251342773438,
"y": 617.4719848632812,
"score": 0
},
{
"key": "markov chain monte carlo",
"label": "Markov chain Monte Carlo",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Markov%20chain%20Monte%20Carlo",
"cluster": "18",
"x": 651.0984497070312,
"y": 592.0747680664062,
"score": 0
},
{
"key": "semi-markov process",
"label": "Semi-Markov process",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Semi-Markov%20process",
"cluster": "18",
"x": 653.264892578125,
"y": 625.0723266601562,
"score": 0.00003383361482948821
},
{
"key": "causal model",
"label": "Causal model",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Causal%20model",
"cluster": "20",
"x": 266.3928527832031,
"y": 170.914306640625,
"score": 0
},
{
"key": "graphical model",
"label": "Graphical model",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Graphical%20model",
"cluster": "6",
"x": 499.71539306640625,
"y": 247.81369018554688,
"score": 0
},
{
"key": "multivariate statistics",
"label": "Multivariate statistics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Multivariate%20statistics",
"cluster": "6",
"x": 293.7435607910156,
"y": 287.1728820800781,
"score": 0.004563378042130552
},
{
"key": "partial least squares path modeling",
"label": "Partial least squares path modeling",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Partial%20least%20squares%20path%20modeling",
"cluster": "6",
"x": 422.01824951171875,
"y": 179.7864990234375,
"score": 0
},
{
"key": "partial least squares regression",
"label": "Partial least squares regression",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Partial%20least%20squares%20regression",
"cluster": "6",
"x": 388.4581604003906,
"y": 202.79307556152344,
"score": 0
},
{
"key": "sequence mining",
"label": "Sequence mining",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Sequence%20mining",
"cluster": "7",
"x": 79.73486328125,
"y": 201.91078186035156,
"score": 0
},
{
"key": "adaptive resonance theory",
"label": "Adaptive resonance theory",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Adaptive%20resonance%20theory",
"cluster": "18",
"x": 319.6479797363281,
"y": -106.43157958984375,
"score": 0
},
{
"key": "data (computing)",
"label": "Data (computing)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Data%20%28computing%29",
"cluster": "11",
"x": -584.1917724609375,
"y": 270.1884765625,
"score": 0
},
{
"key": "data mining",
"label": "Data mining",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Data%20mining",
"cluster": "7",
"x": -68.62580871582031,
"y": 211.20904541015625,
"score": 0.04188893851294152
},
{
"key": "image fusion",
"label": "Image fusion",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Image%20fusion",
"cluster": "11",
"x": -709.7338256835938,
"y": 293.21630859375,
"score": 0
},
{
"key": "bayesian spam filtering",
"label": "Bayesian spam filtering",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bayesian%20spam%20filtering",
"cluster": "18",
"x": 480.0356140136719,
"y": -68.32733917236328,
"score": 0
},
{
"key": "deep learning",
"label": "Deep learning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Deep%20learning",
"cluster": "18",
"x": 12.359847068786621,
"y": -109.24603271484375,
"score": 0
},
{
"key": "artificial general intelligence",
"label": "Artificial general intelligence",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Artificial%20general%20intelligence",
"cluster": "18",
"x": -380.2313537597656,
"y": -272.23785400390625,
"score": 0
},
{
"key": "artificial consciousness",
"label": "Artificial consciousness",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Artificial%20consciousness",
"cluster": "18",
"x": 302.99078369140625,
"y": -129.1732635498047,
"score": 0
},
{
"key": "cognitive architecture",
"label": "Cognitive architecture",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Cognitive%20architecture",
"cluster": "11",
"x": -200.19349670410156,
"y": -267.54254150390625,
"score": 0
},
{
"key": "belief propagation",
"label": "Belief propagation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Belief%20propagation",
"cluster": "18",
"x": 271.719970703125,
"y": -163.1560516357422,
"score": 0
},
{
"key": "neural networks",
"label": "Neural networks",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Neural%20networks",
"cluster": "18",
"x": -290.5908508300781,
"y": -260.1701965332031,
"score": 0
},
{
"key": "bayesian inference",
"label": "Bayesian inference",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bayesian%20inference",
"cluster": "18",
"x": 379.45880126953125,
"y": -171.2779998779297,
"score": 0
},
{
"key": "hammersley–clifford theorem",
"label": "Hammersley–Clifford theorem",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Hammersley%E2%80%93Clifford%20theorem",
"cluster": "18",
"x": 493.32427978515625,
"y": 164.3092041015625,
"score": 0
},
{
"key": "mixture (probability)",
"label": "Mixture (probability)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Mixture%20%28probability%29",
"cluster": "6",
"x": 763.8941650390625,
"y": 376.1531066894531,
"score": 0
},
{
"key": "hierarchical bayes model",
"label": "Hierarchical Bayes model",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Hierarchical%20Bayes%20model",
"cluster": "6",
"x": 752.8665771484375,
"y": 377.31170654296875,
"score": 0
},
{
"key": "compound distribution",
"label": "Compound distribution",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Compound%20distribution",
"cluster": "6",
"x": 812.9390258789062,
"y": 425.7609558105469,
"score": 0
},
{
"key": "expectation-maximization algorithm",
"label": "Expectation-maximization algorithm",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Expectation-maximization%20algorithm",
"cluster": "6",
"x": 629.8825073242188,
"y": 266.6551208496094,
"score": 0
},
{
"key": "product distribution",
"label": "Product distribution",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Product%20distribution",
"cluster": "6",
"x": 880.0425415039062,
"y": 554.5598754882812,
"score": 0
},
{
"key": "statistical classification",
"label": "Statistical classification",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Statistical%20classification",
"cluster": "15",
"x": 105.9872817993164,
"y": -390.65203857421875,
"score": 0
},
{
"key": "data assimilation",
"label": "Data assimilation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Data%20assimilation",
"cluster": "18",
"x": -320.54656982421875,
"y": 238.465087890625,
"score": 0
},
{
"key": "sliding mode control",
"label": "Sliding mode control",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Sliding%20mode%20control",
"cluster": "16",
"x": 195.89402770996094,
"y": 110.38926696777344,
"score": 0
},
{
"key": "stochastic differential equation",
"label": "Stochastic differential equation",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Stochastic%20differential%20equation",
"cluster": "18",
"x": 422.2933044433594,
"y": 517.9449462890625,
"score": 0
},
{
"key": "density estimation",
"label": "density estimation",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/density%20estimation",
"cluster": "6",
"x": 967.5888061523438,
"y": 698.899169921875,
"score": 0.01108537823838863
},
{
"key": "probabilistic logic",
"label": "Probabilistic logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Probabilistic%20logic",
"cluster": "18",
"x": 387.7467956542969,
"y": -142.0709686279297,
"score": 0
},
{
"key": "bayesian probability",
"label": "Bayesian probability",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Bayesian%20probability",
"cluster": "18",
"x": 162.5539093017578,
"y": -460.8059387207031,
"score": 0
},
{
"key": "hidden markov model",
"label": "Hidden Markov model",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Hidden%20Markov%20model",
"cluster": "18",
"x": 115.76100158691406,
"y": 170.06942749023438,
"score": 0
},
{
"key": "concept mining",
"label": "Concept mining",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Concept%20mining",
"cluster": "18",
"x": -212.7456512451172,
"y": 44.3326530456543,
"score": 0
},
{
"key": "regression analysis",
"label": "Regression analysis",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Regression%20analysis",
"cluster": "6",
"x": 307.978759765625,
"y": 350.6305847167969,
"score": 0
},
{
"key": "spatial-temporal reasoning",
"label": "Spatial-temporal reasoning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Spatial-temporal%20reasoning",
"cluster": "14",
"x": -457.3359375,
"y": -679.1116943359375,
"score": 0
},
{
"key": "visual reasoning",
"label": "Visual reasoning",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Visual%20reasoning",
"cluster": "14",
"x": -109.87518310546875,
"y": -87.02415466308594,
"score": 0
},
{
"key": "hyperbolic geometry",
"label": "Hyperbolic geometry",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Hyperbolic%20geometry",
"cluster": "4",
"x": 1163.6336669921875,
"y": -424.310546875,
"score": 0.000010077851402081077
},
{
"key": "binary tiling",
"label": "Binary tiling",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Binary%20tiling",
"cluster": "4",
"x": 1011.8906860351562,
"y": -381.7427673339844,
"score": 0.0009246810398204922
},
{
"key": "information visualization",
"label": "Information visualization",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Information%20visualization",
"cluster": "7",
"x": 103.71183013916016,
"y": 492.7437438964844,
"score": 0.0048598107416966425
},
{
"key": "intuitionistic logic",
"label": "Intuitionistic logic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Intuitionistic%20logic",
"cluster": "14",
"x": -363.3356018066406,
"y": -910.2158813476562,
"score": 0
},
{
"key": "color coding technology for visualization",
"label": "Color coding technology for visualization",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Color%20coding%20technology%20for%20visualization",
"cluster": "7",
"x": -56.48971939086914,
"y": 647.91357421875,
"score": 0.0006331311982467157
},
{
"key": "computational visualistics",
"label": "Computational visualistics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Computational%20visualistics",
"cluster": "7",
"x": 74.58203887939453,
"y": 427.7582092285156,
"score": 0
},
{
"key": "data art",
"label": "Data art",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Data%20art",
"cluster": "7",
"x": 114.05414581298828,
"y": 542.006591796875,
"score": 0.000524837899655657
},
{
"key": "data presentation architecture",
"label": "Data Presentation Architecture",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Data%20Presentation%20Architecture",
"cluster": "7",
"x": -34.98188781738281,
"y": 556.4271240234375,
"score": 0.010372758198459169
},
{
"key": "data visualization",
"label": "Data visualization",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Data%20visualization",
"cluster": "7",
"x": -69.61167907714844,
"y": 533.5786743164062,
"score": 0.009664900398557389
},
{
"key": "infographics",
"label": "Infographics",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Infographics",
"cluster": "7",
"x": 79.82351684570312,
"y": 632.0535278320312,
"score": 0.0027546993608400256
},
{
"key": "software visualization",
"label": "Software visualization",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Software%20visualization",
"cluster": "7",
"x": -10.68284797668457,
"y": 604.3425903320312,
"score": 0.0001544742999994702
},
{
"key": "visual analytics",
"label": "Visual analytics",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Visual%20analytics",
"cluster": "7",
"x": 23.58696174621582,
"y": 302.4921875,
"score": 0.004410900061502943
},
{
"key": "baumslag–solitar group",
"label": "Baumslag–Solitar group",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Baumslag%E2%80%93Solitar%20group",
"cluster": "4",
"x": 1054.100341796875,
"y": -381.0033874511719,
"score": 0
},
{
"key": "binary tree",
"label": "Binary tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Binary%20tree",
"cluster": "4",
"x": 1042.4732666015625,
"y": -473.8753967285156,
"score": 0.00014841884279883735
},
{
"key": "einstein problem",
"label": "Einstein problem",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Einstein%20problem",
"cluster": "4",
"x": 1054.0953369140625,
"y": -390.4862976074219,
"score": 0
},
{
"key": "decision-making",
"label": "Decision-making",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Decision-making",
"cluster": "20",
"x": 113.49565124511719,
"y": 107.8265380859375,
"score": 0.005004384827401128
},
{
"key": "interaction design",
"label": "Interaction design",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Interaction%20design",
"cluster": "7",
"x": -66.79898071289062,
"y": 449.0784606933594,
"score": 0
},
{
"key": "social network analysis software",
"label": "Social network analysis software",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Social%20network%20analysis%20software",
"cluster": "23",
"x": 325.25054931640625,
"y": -298.9791564941406,
"score": 0.0017158294204647972
},
{
"key": "text analytics",
"label": "Text analytics",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Text%20analytics",
"cluster": "11",
"x": -146.9415283203125,
"y": 230.23275756835938,
"score": 0
},
{
"key": "software maintenance",
"label": "Software maintenance",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Software%20maintenance",
"cluster": "7",
"x": -57.98828125,
"y": 737.07763671875,
"score": 0
},
{
"key": "software archaeology",
"label": "Software archaeology",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Software%20archaeology",
"cluster": "7",
"x": -66.68563079833984,
"y": 742.0770263671875,
"score": 0
},
{
"key": "a picture is worth a thousand words",
"label": "A picture is worth a thousand words",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/A%20picture%20is%20worth%20a%20thousand%20words",
"cluster": "7",
"x": 119.46255493164062,
"y": 677.8859252929688,
"score": 0
},
{
"key": "charts",
"label": "Charts",
"tag": "Concept",
"URL": "https://en.wikipedia.org/wiki/Charts",
"cluster": "7",
"x": 146.03013610839844,
"y": 560.601806640625,
"score": 0.00033406724056424806
},
{
"key": "dashboards (management information systems)",
"label": "Dashboards (management information systems)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Dashboards%20%28management%20information%20systems%29",
"cluster": "7",
"x": -73.25431060791016,
"y": 660.0479125976562,
"score": 0.0003228902084968991
},
{
"key": "edugraphic",
"label": "Edugraphic",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Edugraphic",
"cluster": "7",
"x": 99.85425567626953,
"y": 681.4953002929688,
"score": 0
},
{
"key": "graphic design",
"label": "Graphic design",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Graphic%20design",
"cluster": "7",
"x": 5.571784973144531,
"y": 702.4937133789062,
"score": 0.0001022252964758822
},
{
"key": "graphic image development",
"label": "Graphic image development",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Graphic%20image%20development",
"cluster": "7",
"x": 110.68470001220703,
"y": 720.4443969726562,
"score": 0.00007901951667540844
},
{
"key": "graphic organizer",
"label": "Graphic organizer",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Graphic%20organizer",
"cluster": "7",
"x": 142.9185028076172,
"y": 594.9310302734375,
"score": 0.000028975701734191537
},
{
"key": "information design",
"label": "Information design",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Information%20design",
"cluster": "7",
"x": 92.91651153564453,
"y": 521.9702758789062,
"score": 0.000980827684957635
},
{
"key": "scientific visualization",
"label": "Scientific visualization",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Scientific%20visualization",
"cluster": "7",
"x": 31.291765213012695,
"y": 533.1456909179688,
"score": 0.000409916185401734
},
{
"key": "statistical graphics",
"label": "Statistical graphics",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Statistical%20graphics",
"cluster": "7",
"x": 31.662752151489258,
"y": 603.8508911132812,
"score": 0.0036133141801905706
},
{
"key": "technical illustration",
"label": "Technical illustration",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Technical%20illustration",
"cluster": "7",
"x": 82.7949447631836,
"y": 664.0674438476562,
"score": 0.000766472965342816
},
{
"key": "isotype (picture language)",
"label": "Isotype (picture language)",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Isotype%20%28picture%20language%29",
"cluster": "7",
"x": 55.25484848022461,
"y": 621.23779296875,
"score": 6.871262319600734e-7
},
{
"key": "timeline",
"label": "Timeline",
"tag": "Chart type",
"URL": "https://en.wikipedia.org/wiki/Timeline",
"cluster": "7",
"x": 111.18877410888672,
"y": 684.5283813476562,
"score": 0
},
{
"key": "visualization (graphic)",
"label": "Visualization (graphic)",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Visualization%20%28graphic%29",
"cluster": "7",
"x": 133.8409881591797,
"y": 655.77099609375,
"score": 0
},
{
"key": "news illustrated",
"label": "News Illustrated",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/News%20Illustrated",
"cluster": "7",
"x": 106.509765625,
"y": 673.3134765625,
"score": 0
},
{
"key": "maestro concept",
"label": "Maestro Concept",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Maestro%20Concept",
"cluster": "7",
"x": 176.93894958496094,
"y": 826.7308959960938,
"score": 0
},
{
"key": "family tree",
"label": "Family tree",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Family%20tree",
"cluster": "7",
"x": 115.97740936279297,
"y": 667.4318237304688,
"score": 0
},
{
"key": "analytics",
"label": "Analytics",
"tag": "Method",
"URL": "https://en.wikipedia.org/wiki/Analytics",
"cluster": "7",
"x": -144.46363830566406,
"y": 422.9861755371094,
"score": 0.015476115764880895
},
{
"key": "balanced scorecard",
"label": "Balanced scorecard",
"tag": "unknown",
"URL": "https://en.wikipedia.org/wiki/Balanced%20scorecard",
"cluster": "7",
"x": -162.80694580078125,
"y": 511.9626770019531,
"score": 0
},
{
"key": "big data",
"label": "Big Data",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Big%20Data",
"cluster": "7",
"x": -23.16063117980957,
"y": 475.2693786621094,
"score": 0
},
{
"key": "business analysis",
"label": "Business analysis",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Business%20analysis",
"cluster": "5",
"x": -246.4901580810547,
"y": 617.086181640625,
"score": 0
},
{
"key": "business intelligence",
"label": "Business intelligence",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Business%20intelligence",
"cluster": "7",
"x": -262.165771484375,
"y": 493.0898742675781,
"score": 0.014038858934107262
},
{
"key": "climate change art",
"label": "Climate change art",
"tag": "Field",
"URL": "https://en.wikipedia.org/wiki/Climate%20change%20art",
"cluster": "7",
"x": 9.563399314880371,
"y": 586.7542724609375,
"score": 0
},
{
"key": "dashboard (business)",
"label": "Dashboard (business)",
---