vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

681 lines
22 KiB

  1. let util = require("../../util");
  2. import Cluster from './components/nodes/Cluster'
  3. class ClusterEngine {
  4. constructor(body) {
  5. this.body = body;
  6. this.clusteredNodes = {};
  7. this.options = {};
  8. this.defaultOptions = {};
  9. util.extend(this.options, this.defaultOptions);
  10. this.body.emitter.on('_resetData', () => {this.clusteredNodes = {};})
  11. }
  12. setOptions(options) {
  13. if (options !== undefined) {
  14. }
  15. }
  16. /**
  17. *
  18. * @param hubsize
  19. * @param options
  20. */
  21. clusterByHubsize(hubsize, options) {
  22. if (hubsize === undefined) {
  23. hubsize = this._getHubSize();
  24. }
  25. else if (typeof(hubsize) === "object") {
  26. options = this._checkOptions(hubsize);
  27. hubsize = this._getHubSize();
  28. }
  29. let nodesToCluster = [];
  30. for (let i = 0; i < this.body.nodeIndices.length; i++) {
  31. let node = this.body.nodes[this.body.nodeIndices[i]];
  32. if (node.edges.length >= hubsize) {
  33. nodesToCluster.push(node.id);
  34. }
  35. }
  36. for (let i = 0; i < nodesToCluster.length; i++) {
  37. this.clusterByConnection(nodesToCluster[i],options,false);
  38. }
  39. this.body.emitter.emit('_dataChanged');
  40. }
  41. /**
  42. * loop over all nodes, check if they adhere to the condition and cluster if needed.
  43. * @param options
  44. * @param refreshData
  45. */
  46. cluster(options = {}, refreshData = true) {
  47. if (options.joinCondition === undefined) {throw new Error("Cannot call clusterByNodeData without a joinCondition function in the options.");}
  48. // check if the options object is fine, append if needed
  49. options = this._checkOptions(options);
  50. let childNodesObj = {};
  51. let childEdgesObj = {};
  52. // collect the nodes that will be in the cluster
  53. for (let i = 0; i < this.body.nodeIndices.length; i++) {
  54. let nodeId = this.body.nodeIndices[i];
  55. let node = this.body.nodes[nodeId];
  56. let clonedOptions = this._cloneOptions(node);
  57. if (options.joinCondition(clonedOptions) === true) {
  58. childNodesObj[nodeId] = this.body.nodes[nodeId];
  59. // collect the nodes that will be in the cluster
  60. for (let i = 0; i < node.edges.length; i++) {
  61. let edge = node.edges[i];
  62. childEdgesObj[edge.id] = edge;
  63. }
  64. }
  65. }
  66. this._cluster(childNodesObj, childEdgesObj, options, refreshData);
  67. }
  68. /**
  69. * Cluster all nodes in the network that have only 1 edge
  70. * @param options
  71. * @param refreshData
  72. */
  73. clusterOutliers(options, refreshData = true) {
  74. options = this._checkOptions(options);
  75. let clusters = [];
  76. // collect the nodes that will be in the cluster
  77. for (let i = 0; i < this.body.nodeIndices.length; i++) {
  78. let childNodesObj = {};
  79. let childEdgesObj = {};
  80. let nodeId = this.body.nodeIndices[i];
  81. let visibleEdges = 0;
  82. let edge;
  83. for (let j = 0; j < this.body.nodes[nodeId].edges.length; j++) {
  84. if (this.body.nodes[nodeId].edges[j].options.hidden === false) {
  85. visibleEdges++;
  86. edge = this.body.nodes[nodeId].edges[j];
  87. }
  88. }
  89. if (visibleEdges === 1) {
  90. // this is an outlier
  91. let childNodeId = this._getConnectedId(edge, nodeId);
  92. if (childNodeId !== nodeId) {
  93. if (options.joinCondition === undefined) {
  94. if (this._checkIfUsed(clusters,nodeId,edge.id) === false && this._checkIfUsed(clusters,childNodeId,edge.id) === false) {
  95. childEdgesObj[edge.id] = edge;
  96. childNodesObj[nodeId] = this.body.nodes[nodeId];
  97. childNodesObj[childNodeId] = this.body.nodes[childNodeId];
  98. }
  99. }
  100. else {
  101. let clonedOptions = this._cloneOptions(this.body.nodes[nodeId]);
  102. if (options.joinCondition(clonedOptions) === true && this._checkIfUsed(clusters,nodeId,edge.id) === false) {
  103. childEdgesObj[edge.id] = edge;
  104. childNodesObj[nodeId] = this.body.nodes[nodeId];
  105. }
  106. clonedOptions = this._cloneOptions(this.body.nodes[childNodeId]);
  107. if (options.joinCondition(clonedOptions) === true && this._checkIfUsed(clusters,nodeId,edge.id) === false) {
  108. childEdgesObj[edge.id] = edge;
  109. childNodesObj[childNodeId] = this.body.nodes[childNodeId];
  110. }
  111. }
  112. if (Object.keys(childNodesObj).length > 0 && Object.keys(childEdgesObj).length > 0) {
  113. clusters.push({nodes: childNodesObj, edges: childEdgesObj})
  114. }
  115. }
  116. }
  117. }
  118. for (let i = 0; i < clusters.length; i++) {
  119. this._cluster(clusters[i].nodes, clusters[i].edges, options, false)
  120. }
  121. if (refreshData === true) {
  122. this.body.emitter.emit('_dataChanged');
  123. }
  124. }
  125. _checkIfUsed(clusters, nodeId, edgeId) {
  126. for (let i = 0; i < clusters.length; i++) {
  127. let cluster = clusters[i];
  128. if (cluster.nodes[nodeId] !== undefined || cluster.edges[edgeId] !== undefined) {
  129. return true;
  130. }
  131. }
  132. return false;
  133. }
  134. /**
  135. * suck all connected nodes of a node into the node.
  136. * @param nodeId
  137. * @param options
  138. * @param refreshData
  139. */
  140. clusterByConnection(nodeId, options, refreshData = true) {
  141. // kill conditions
  142. if (nodeId === undefined) {throw new Error("No nodeId supplied to clusterByConnection!");}
  143. if (this.body.nodes[nodeId] === undefined) {throw new Error("The nodeId given to clusterByConnection does not exist!");}
  144. let node = this.body.nodes[nodeId];
  145. options = this._checkOptions(options, node);
  146. if (options.clusterNodeProperties.x === undefined) {options.clusterNodeProperties.x = node.x;}
  147. if (options.clusterNodeProperties.y === undefined) {options.clusterNodeProperties.y = node.y;}
  148. if (options.clusterNodeProperties.fixed === undefined) {
  149. options.clusterNodeProperties.fixed = {};
  150. options.clusterNodeProperties.fixed.x = node.options.fixed.x;
  151. options.clusterNodeProperties.fixed.y = node.options.fixed.y;
  152. }
  153. let childNodesObj = {};
  154. let childEdgesObj = {};
  155. let parentNodeId = node.id;
  156. let parentClonedOptions = this._cloneOptions(node);
  157. childNodesObj[parentNodeId] = node;
  158. // collect the nodes that will be in the cluster
  159. for (let i = 0; i < node.edges.length; i++) {
  160. let edge = node.edges[i];
  161. let childNodeId = this._getConnectedId(edge, parentNodeId);
  162. if (childNodeId !== parentNodeId) {
  163. if (options.joinCondition === undefined) {
  164. childEdgesObj[edge.id] = edge;
  165. childNodesObj[childNodeId] = this.body.nodes[childNodeId];
  166. }
  167. else {
  168. // clone the options and insert some additional parameters that could be interesting.
  169. let childClonedOptions = this._cloneOptions(this.body.nodes[childNodeId]);
  170. if (options.joinCondition(parentClonedOptions, childClonedOptions) === true) {
  171. childEdgesObj[edge.id] = edge;
  172. childNodesObj[childNodeId] = this.body.nodes[childNodeId];
  173. }
  174. }
  175. }
  176. else {
  177. childEdgesObj[edge.id] = edge;
  178. }
  179. }
  180. this._cluster(childNodesObj, childEdgesObj, options, refreshData);
  181. }
  182. /**
  183. * This returns a clone of the options or options of the edge or node to be used for construction of new edges or check functions for new nodes.
  184. * @param objId
  185. * @param type
  186. * @returns {{}}
  187. * @private
  188. */
  189. _cloneOptions(item, type) {
  190. let clonedOptions = {};
  191. if (type === undefined || type === 'node') {
  192. util.deepExtend(clonedOptions, item.options, true);
  193. clonedOptions.x = item.x;
  194. clonedOptions.y = item.y;
  195. clonedOptions.amountOfConnections = item.edges.length;
  196. }
  197. else {
  198. util.deepExtend(clonedOptions, item.options, true);
  199. }
  200. return clonedOptions;
  201. }
  202. /**
  203. * This function creates the edges that will be attached to the cluster.
  204. *
  205. * @param childNodesObj
  206. * @param childEdgesObj
  207. * @param newEdges
  208. * @param options
  209. * @private
  210. */
  211. _createClusterEdges (childNodesObj, childEdgesObj, newEdges, clusterNodeProperties, clusterEdgeProperties) {
  212. let edge, childNodeId, childNode, toId, fromId, otherNodeId;
  213. let childKeys = Object.keys(childNodesObj);
  214. for (let i = 0; i < childKeys.length; i++) {
  215. childNodeId = childKeys[i];
  216. childNode = childNodesObj[childNodeId];
  217. // construct new edges from the cluster to others
  218. for (let j = 0; j < childNode.edges.length; j++) {
  219. edge = childNode.edges[j];
  220. childEdgesObj[edge.id] = edge;
  221. // childNodeId position will be replaced by the cluster.
  222. if (edge.toId == childNodeId) { // this is a double equals because ints and strings can be interchanged here.
  223. toId = clusterNodeProperties.id;
  224. fromId = edge.fromId;
  225. otherNodeId = fromId;
  226. }
  227. else {
  228. toId = edge.toId;
  229. fromId = clusterNodeProperties.id;
  230. otherNodeId = toId;
  231. }
  232. // if the node connected to the cluster is also in the cluster we do not need a new edge.
  233. if (childNodesObj[otherNodeId] === undefined) {
  234. let clonedOptions = this._cloneOptions(edge, 'edge');
  235. util.deepExtend(clonedOptions, clusterEdgeProperties);
  236. clonedOptions.from = fromId;
  237. clonedOptions.to = toId;
  238. clonedOptions.id = 'clusterEdge:' + util.randomUUID();
  239. newEdges.push(this.body.functions.createEdge(clonedOptions))
  240. }
  241. }
  242. }
  243. }
  244. /**
  245. * This function checks the options that can be supplied to the different cluster functions
  246. * for certain fields and inserts defaults if needed
  247. * @param options
  248. * @returns {*}
  249. * @private
  250. */
  251. _checkOptions(options = {}) {
  252. if (options.clusterEdgeProperties === undefined) {options.clusterEdgeProperties = {};}
  253. if (options.clusterNodeProperties === undefined) {options.clusterNodeProperties = {};}
  254. return options;
  255. }
  256. /**
  257. *
  258. * @param {Object} childNodesObj | object with node objects, id as keys, same as childNodes except it also contains a source node
  259. * @param {Object} childEdgesObj | object with edge objects, id as keys
  260. * @param {Array} options | object with {clusterNodeProperties, clusterEdgeProperties, processProperties}
  261. * @param {Boolean} refreshData | when true, do not wrap up
  262. * @private
  263. */
  264. _cluster(childNodesObj, childEdgesObj, options, refreshData = true) {
  265. console.log(childNodesObj)
  266. // kill condition: no children so cant cluster
  267. if (Object.keys(childNodesObj).length === 0) {return;}
  268. let clusterNodeProperties = util.deepExtend({},options.clusterNodeProperties);
  269. // construct the clusterNodeProperties
  270. if (options.processProperties !== undefined) {
  271. // get the childNode options
  272. let childNodesOptions = [];
  273. for (let nodeId in childNodesObj) {
  274. let clonedOptions = this._cloneOptions(childNodesObj[nodeId]);
  275. childNodesOptions.push(clonedOptions);
  276. }
  277. // get clusterproperties based on childNodes
  278. let childEdgesOptions = [];
  279. for (let edgeId in childEdgesObj) {
  280. let clonedOptions = this._cloneOptions(childEdgesObj[edgeId], 'edge');
  281. childEdgesOptions.push(clonedOptions);
  282. }
  283. clusterNodeProperties = options.processProperties(clusterNodeProperties, childNodesOptions, childEdgesOptions);
  284. if (!clusterNodeProperties) {
  285. throw new Error("The processProperties function does not return properties!");
  286. }
  287. }
  288. // check if we have an unique id;
  289. if (clusterNodeProperties.id === undefined) {clusterNodeProperties.id = 'cluster:' + util.randomUUID();}
  290. let clusterId = clusterNodeProperties.id;
  291. if (clusterNodeProperties.label === undefined) {
  292. clusterNodeProperties.label = 'cluster';
  293. }
  294. // give the clusterNode a postion if it does not have one.
  295. let pos = undefined;
  296. if (clusterNodeProperties.x === undefined) {
  297. pos = this._getClusterPosition(childNodesObj);
  298. clusterNodeProperties.x = pos.x;
  299. }
  300. if (clusterNodeProperties.y === undefined) {
  301. if (pos === undefined) {
  302. pos = this._getClusterPosition(childNodesObj);
  303. }
  304. clusterNodeProperties.y = pos.y;
  305. }
  306. // force the ID to remain the same
  307. clusterNodeProperties.id = clusterId;
  308. // create the clusterNode
  309. let clusterNode = this.body.functions.createNode(clusterNodeProperties, Cluster);
  310. clusterNode.isCluster = true;
  311. clusterNode.containedNodes = childNodesObj;
  312. clusterNode.containedEdges = childEdgesObj;
  313. // cache a copy from the cluster edge properties if we have to reconnect others later on
  314. clusterNode.clusterEdgeProperties = options.clusterEdgeProperties;
  315. // finally put the cluster node into global
  316. this.body.nodes[clusterNodeProperties.id] = clusterNode;
  317. // create the new edges that will connect to the cluster
  318. let newEdges = [];
  319. this._createClusterEdges(childNodesObj, childEdgesObj, newEdges, clusterNodeProperties, options.clusterEdgeProperties);
  320. // disable the childEdges
  321. for (let edgeId in childEdgesObj) {
  322. if (childEdgesObj.hasOwnProperty(edgeId)) {
  323. if (this.body.edges[edgeId] !== undefined) {
  324. let edge = this.body.edges[edgeId];
  325. edge.togglePhysics(false);
  326. edge.options.hidden = true;
  327. }
  328. }
  329. }
  330. // disable the childNodes
  331. for (let nodeId in childNodesObj) {
  332. if (childNodesObj.hasOwnProperty(nodeId)) {
  333. this.clusteredNodes[nodeId] = {clusterId:clusterNodeProperties.id, node: this.body.nodes[nodeId]};
  334. this.body.nodes[nodeId].togglePhysics(false);
  335. this.body.nodes[nodeId].options.hidden = true;
  336. }
  337. }
  338. // push new edges to global
  339. for (let i = 0; i < newEdges.length; i++) {
  340. this.body.edges[newEdges[i].id] = newEdges[i];
  341. this.body.edges[newEdges[i].id].connect();
  342. }
  343. // set ID to undefined so no duplicates arise
  344. clusterNodeProperties.id = undefined;
  345. // wrap up
  346. if (refreshData === true) {
  347. this.body.emitter.emit('_dataChanged');
  348. }
  349. }
  350. /**
  351. * Check if a node is a cluster.
  352. * @param nodeId
  353. * @returns {*}
  354. */
  355. isCluster(nodeId) {
  356. if (this.body.nodes[nodeId] !== undefined) {
  357. return this.body.nodes[nodeId].isCluster === true;
  358. }
  359. else {
  360. console.log("Node does not exist.");
  361. return false;
  362. }
  363. }
  364. /**
  365. * get the position of the cluster node based on what's inside
  366. * @param {object} childNodesObj | object with node objects, id as keys
  367. * @returns {{x: number, y: number}}
  368. * @private
  369. */
  370. _getClusterPosition(childNodesObj) {
  371. let childKeys = Object.keys(childNodesObj);
  372. let minX = childNodesObj[childKeys[0]].x;
  373. let maxX = childNodesObj[childKeys[0]].x;
  374. let minY = childNodesObj[childKeys[0]].y;
  375. let maxY = childNodesObj[childKeys[0]].y;
  376. let node;
  377. for (let i = 1; i < childKeys.length; i++) {
  378. node = childNodesObj[childKeys[i]];
  379. minX = node.x < minX ? node.x : minX;
  380. maxX = node.x > maxX ? node.x : maxX;
  381. minY = node.y < minY ? node.y : minY;
  382. maxY = node.y > maxY ? node.y : maxY;
  383. }
  384. return {x: 0.5*(minX + maxX), y: 0.5*(minY + maxY)};
  385. }
  386. /**
  387. * Open a cluster by calling this function.
  388. * @param {String} clusterNodeId | the ID of the cluster node
  389. * @param {Boolean} refreshData | wrap up afterwards if not true
  390. */
  391. openCluster(clusterNodeId, options, refreshData = true) {
  392. // kill conditions
  393. if (clusterNodeId === undefined) {throw new Error("No clusterNodeId supplied to openCluster.");}
  394. if (this.body.nodes[clusterNodeId] === undefined) {throw new Error("The clusterNodeId supplied to openCluster does not exist.");}
  395. if (this.body.nodes[clusterNodeId].containedNodes === undefined) {
  396. console.log("The node:" + clusterNodeId + " is not a cluster.");
  397. return
  398. }
  399. let clusterNode = this.body.nodes[clusterNodeId];
  400. let containedNodes = clusterNode.containedNodes;
  401. let containedEdges = clusterNode.containedEdges;
  402. // allow the user to position the nodes after release.
  403. if (options.releaseFunction !== undefined) {
  404. let positions = {};
  405. let clusterPosition = {x:clusterNode.x, y:clusterNode.y};
  406. for (let nodeId in containedNodes) {
  407. if (containedNodes.hasOwnProperty(nodeId)) {
  408. let containedNode = this.body.nodes[nodeId];
  409. positions[nodeId] = {x: containedNode.x, y: containedNode.y};
  410. }
  411. }
  412. let newPositions = options.releaseFunction(clusterPosition, positions);
  413. for (let nodeId in containedNodes) {
  414. if (containedNodes.hasOwnProperty(nodeId)) {
  415. let containedNode = this.body.nodes[nodeId];
  416. if (newPositions[nodeId] !== undefined) {
  417. containedNode.x = newPositions[nodeId].x || clusterNode.x;
  418. containedNode.y = newPositions[nodeId].y || clusterNode.y;
  419. }
  420. }
  421. }
  422. }
  423. else {
  424. // copy the position from the cluster
  425. for (let nodeId in containedNodes) {
  426. if (containedNodes.hasOwnProperty(nodeId)) {
  427. let containedNode = this.body.nodes[nodeId];
  428. containedNode = containedNodes[nodeId];
  429. // inherit position
  430. containedNode.x = clusterNode.x;
  431. containedNode.y = clusterNode.y;
  432. }
  433. }
  434. }
  435. // release nodes
  436. for (let nodeId in containedNodes) {
  437. if (containedNodes.hasOwnProperty(nodeId)) {
  438. let containedNode = this.body.nodes[nodeId];
  439. // inherit speed
  440. containedNode.vx = clusterNode.vx;
  441. containedNode.vy = clusterNode.vy;
  442. containedNode.options.hidden = false;
  443. containedNode.togglePhysics(true);
  444. delete this.clusteredNodes[nodeId];
  445. }
  446. }
  447. // release edges
  448. for (let edgeId in containedEdges) {
  449. if (containedEdges.hasOwnProperty(edgeId)) {
  450. let edge = containedEdges[edgeId];
  451. // if this edge was a temporary edge and it's connected nodes do not exist anymore, we remove it from the data
  452. if (this.body.nodes[edge.fromId] === undefined || this.body.nodes[edge.toId] === undefined) {
  453. edge.edgeType.cleanup();
  454. // this removes the edge from node.edges, which is why edgeIds is formed
  455. edge.disconnect();
  456. delete this.body.edges[edgeId];
  457. }
  458. else {
  459. // one of the nodes connected to this edge is in a cluster. We give the edge to that cluster so it will be released when that cluster is opened.
  460. if (this.clusteredNodes[edge.fromId] !== undefined || this.clusteredNodes[edge.toId] !== undefined) {
  461. let fromId, toId;
  462. let clusteredNode = this.clusteredNodes[edge.fromId] || this.clusteredNodes[edge.toId];
  463. let clusterId = clusteredNode.clusterId;
  464. let clusterNode = this.body.nodes[clusterId];
  465. clusterNode.containedEdges[edgeId] = edge;
  466. if (this.clusteredNodes[edge.fromId] !== undefined) {
  467. fromId = clusterId;
  468. toId = edge.toId;
  469. }
  470. else {
  471. fromId = edge.fromId;
  472. toId = clusterId;
  473. }
  474. // if both from and to nodes are visible, we create a new temporary edge
  475. if (this.body.nodes[fromId].options.hidden !== true && this.body.nodes[toId].options.hidden !== true) {
  476. let clonedOptions = this._cloneOptions(edge, 'edge');
  477. let id = 'clusterEdge:' + util.randomUUID();
  478. util.deepExtend(clonedOptions, clusterNode.clusterEdgeProperties);
  479. util.deepExtend(clonedOptions, {from: fromId, to: toId, hidden: false, physics: true, id: id});
  480. let newEdge = this.body.functions.createEdge(clonedOptions);
  481. this.body.edges[id] = newEdge;
  482. this.body.edges[id].connect();
  483. }
  484. }
  485. else {
  486. edge.options.hidden = false;
  487. edge.togglePhysics(true);
  488. }
  489. }
  490. }
  491. }
  492. // remove all temporary edges
  493. for (let i = 0; i < clusterNode.edges.length; i++) {
  494. let edgeId = clusterNode.edges[i].id;
  495. this.body.edges[edgeId].edgeType.cleanup();
  496. // this removes the edge from node.edges, which is why edgeIds is formed
  497. this.body.edges[edgeId].disconnect();
  498. delete this.body.edges[edgeId];
  499. }
  500. // remove clusterNode
  501. delete this.body.nodes[clusterNodeId];
  502. if (refreshData === true) {
  503. this.body.emitter.emit('_dataChanged');
  504. }
  505. }
  506. getNodesInCluster(clusterId) {
  507. let nodesArray = []
  508. if (this.isCluster(clusterId) === true) {
  509. let containedNodes = this.body.nodes[clusterId].containedNodes;
  510. for (let nodeId in containedNodes) {
  511. if (containedNodes.hasOwnProperty(nodeId)) {
  512. nodesArray.push(nodeId)
  513. }
  514. }
  515. }
  516. return nodesArray;
  517. }
  518. /**
  519. * Get the stack clusterId's that a certain node resides in. cluster A -> cluster B -> cluster C -> node
  520. * @param nodeId
  521. * @returns {Array}
  522. * @private
  523. */
  524. findNode(nodeId) {
  525. let stack = [];
  526. let max = 100;
  527. let counter = 0;
  528. while (this.clusteredNodes[nodeId] !== undefined && counter < max) {
  529. stack.push(this.clusteredNodes[nodeId].node);
  530. nodeId = this.clusteredNodes[nodeId].clusterId;
  531. counter++;
  532. }
  533. stack.push(this.body.nodes[nodeId]);
  534. return stack;
  535. }
  536. /**
  537. * Get the Id the node is connected to
  538. * @param edge
  539. * @param nodeId
  540. * @returns {*}
  541. * @private
  542. */
  543. _getConnectedId(edge, nodeId) {
  544. if (edge.toId != nodeId) {
  545. return edge.toId;
  546. }
  547. else if (edge.fromId != nodeId) {
  548. return edge.fromId;
  549. }
  550. else {
  551. return edge.fromId;
  552. }
  553. }
  554. /**
  555. * We determine how many connections denote an important hub.
  556. * We take the mean + 2*std as the important hub size. (Assuming a normal distribution of data, ~2.2%)
  557. *
  558. * @private
  559. */
  560. _getHubSize() {
  561. let average = 0;
  562. let averageSquared = 0;
  563. let hubCounter = 0;
  564. let largestHub = 0;
  565. for (let i = 0; i < this.body.nodeIndices.length; i++) {
  566. let node = this.body.nodes[this.body.nodeIndices[i]];
  567. if (node.edges.length > largestHub) {
  568. largestHub = node.edges.length;
  569. }
  570. average += node.edges.length;
  571. averageSquared += Math.pow(node.edges.length,2);
  572. hubCounter += 1;
  573. }
  574. average = average / hubCounter;
  575. averageSquared = averageSquared / hubCounter;
  576. let letiance = averageSquared - Math.pow(average,2);
  577. let standardDeviation = Math.sqrt(letiance);
  578. let hubThreshold = Math.floor(average + 2*standardDeviation);
  579. // always have at least one to cluster
  580. if (hubThreshold > largestHub) {
  581. hubThreshold = largestHub;
  582. }
  583. return hubThreshold;
  584. };
  585. }
  586. export default ClusterEngine;