### VOSviewer Network File Example Source: https://app.vosviewer.com/docs/file-types/map-and-network-file-type This snippet illustrates a VOSviewer network file, which defines the links between items. It typically includes the IDs of two connected items and the strength of their link. If only two columns are present, link strength defaults to 1. ```text 1 2 10 1 10 88 2 5 1 2 7 1 2 10 91 3 6 3 3 8 14 3 9 82 3 10 2 4 5 13 4 6 2 4 8 2 4 9 3 4 10 2 5 6 9 5 7 10 5 9 1 5 10 1 6 7 140 6 8 5 6 9 4 7 8 3 7 10 1 8 9 19 ``` -------------------------------- ### VOSviewer Map File Example Source: https://app.vosviewer.com/docs/file-types/map-and-network-file-type This snippet shows the structure of a VOSviewer map file, which contains item attributes like ID, label, coordinates, cluster, and various weights and scores. Each column represents an attribute, and each row represents an item. ```text id label x y cluster weight weight weight weight weight score score score 1 James 1.0551 -0.2935 2 2 98 88 4221 109.3879 1996.8409 47.9659 1.243 2 Mary 0.7492 0.2841 2 4 103 91 1994 55.0416 2011.7363 21.9121 0.6049 3 John -0.6243 -0.7247 1 4 101 89 3178 143.3831 2017.1461 35.7079 1.611 4 Linda -0.0722 0.0248 3 5 22 261 7177 209.8957 2010.2146 27.4981 0.8042 5 David 0.1026 0.4626 3 6 35 124 5843 199.8492 2010.7581 47.121 1.6117 6 Sarah -0.5883 0.3511 4 6 163 228 12930 436.0204 2013.1798 56.7105 1.9124 7 Paul -0.3409 0.7997 4 5 155 168 9850 294.1641 2012.6071 58.631 1.751 8 Karen -0.6236 -0.1752 1 5 43 181 3733 173.188 2016.3149 20.6243 0.9568 9 Daniel -0.1581 -0.5063 1 5 109 395 9382 344.7116 2014.1013 23.7519 0.8727 10 Emily 0.5004 -0.2224 2 6 185 431 13528 371.2338 2006.7889 31.3875 0.8613 ``` -------------------------------- ### VOSviewer JSON Network Data Example Source: https://app.vosviewer.com/docs/file-types/json-file-type This is an example of a VOSviewer JSON file representing network data. It includes item details such as ID, label, coordinates, cluster assignment, and various weights and scores. ```json { "network": { "items": [ { "id": 1, "label": "James", "x": 1.0551, "y": -0.2935, "cluster": 2, "weights": { "Documents": 88, "Citations": 4221, "Norm. citations": 109.3879 }, "scores": { "Avg. pub. year": 1996.8409, "Avg. citations": 47.9659, "Avg. norm. citations": 1.243 } }, { "id": 2, "label": "Mary", "x": 0.7492, "y": 0.2841, "cluster": 2, "weights": { "Documents": 91, "Citations": 1994, "Norm. citations": 55.0416 }, "scores": { "Avg. pub. year": 2011.7363, "Avg. citations": 21.9121, "Avg. norm. citations": 0.6049 } }, { "id": 3, "label": "John", "x": -0.6243, "y": -0.7247, "cluster": 1, "weights": { "Documents": 89, "Citations": 3178, "Norm. citations": 143.3831 }, "scores": { "Avg. pub. year": 2017.1461, "Avg. citations": 35.7079, "Avg. norm. citations": 1.611 } }, { "id": 4, "label": "Linda", "x": -0.0722, "y": 0.0248, "cluster": 3, "weights": { "Documents": 261, "Citations": 7177, "Norm. citations": 209.8957 }, "scores": { "Avg. pub. year": 2010.2146, "Avg. citations": 27.4981, "Avg. norm. citations": 0.8042 } }, { "id": 5, "label": "David", "x": 0.1026, "y": 0.4626, "cluster": 3, "weights": { "Documents": 124, "Citations": 5843, "Norm. citations": 199.8492 }, "scores": { "Avg. pub. year": 2010.7581, "Avg. citations": 47.121, "Avg. norm. citations": 1.6117 } }, { "id": 6, "label": "Sarah", "x": -0.5883, "y": 0.3511, "cluster": 4, "weights": { "Documents": 228, "Citations": 12930, "Norm. citations": 436.0204 }, "scores": { "Avg. pub. year": 2013.1798, "Avg. citations": 56.7105, "Avg. norm. citations": 1.9124 } }, { "id": 7, "label": "Paul", "x": -0.3409, "y": 0.7997, "cluster": 4, "weights": { "Documents": 168, "Citations": 9850, "Norm. citations": 294.1641 }, "scores": { "Avg. pub. year": 2012.6071, "Avg. citations": 58.631, "Avg. norm. citations": 1.751 } }, { "id": 8, "label": "Karen", "x": -0.6236, "y": -0.1752, "cluster": 1, "weights": { "Documents": 181, "Citations": 3733, "Norm. citations": 173.188 }, "scores": { "Avg. pub. year": 2016.3149, "Avg. citations": 20.6243, "Avg. norm. citations": 0.9568 } }, { "id": 9, "label": "Daniel", "x": -0.1581, "y": -0.5063, "cluster": 1, "weights": { "Documents": 395, "Citations": 9382, "Norm. citations": 344.7116 }, "scores": { "Avg. pub. year": 2014.1013, "Avg. citations": 23.7519, "Avg. norm. citations": 0.8727 } } ``` -------------------------------- ### Complete JSON Structure Example Source: https://app.vosviewer.com/docs/file-types/json-file-type A complete JSON structure containing both item and link data, as used by VOSviewer. ```json { "items": [ { "id": 10, "label": "Emily", "x": 0.5004, "y": -0.2224, "cluster": 2, "weights": { "Documents": 431, "Citations": 13528, "Norm. citations": 371.2338 }, "scores": { "Avg. pub. year": 2006.7889, "Avg. citations": 31.3875, "Avg. norm. citations": 0.8613 } } ], "links": [ { "source_id": 1, "target_id": 2, "strength": 10 }, { "source_id": 1, "target_id": 10, "strength": 88 }, { "source_id": 2, "target_id": 5, "strength": 1 }, { "source_id": 2, "target_id": 7, "strength": 1 }, { "source_id": 2, "target_id": 10, "strength": 91 }, { "source_id": 3, "target_id": 6, "strength": 3 }, { "source_id": 3, "target_id": 8, "strength": 14 }, { "source_id": 3, "target_id": 9, "strength": 82 }, { "source_id": 3, "target_id": 10, "strength": 2 }, { "source_id": 4, "target_id": 5, "strength": 13 }, { "source_id": 4, "target_id": 6, "strength": 2 }, { "source_id": 4, "target_id": 8, "strength": 2 }, { "source_id": 4, "target_id": 9, "strength": 3 }, { "source_id": 4, "target_id": 10, "strength": 2 }, { "source_id": 5, "target_id": 6, "strength": 9 }, { "source_id": 5, "target_id": 7, "strength": 10 }, { "source_id": 5, "target_id": 9, "strength": 1 }, { "source_id": 5, "target_id": 10, "strength": 1 }, { "source_id": 6, "target_id": 7, "strength": 140 }, { "source_id": 6, "target_id": 8, "strength": 5 }, { "source_id": 6, "target_id": 9, "strength": 4 }, { "source_id": 7, "target_id": 8, "strength": 3 }, { "source_id": 7, "target_id": 10, "strength": 1 }, { "source_id": 8, "target_id": 9, "strength": 19 } ] } ``` -------------------------------- ### JSON Item Data Example Source: https://app.vosviewer.com/docs/file-types/json-file-type Example of a single item's data within a JSON file. Includes ID, label, coordinates, cluster assignment, and associated weights and scores. ```json { "id": 10, "label": "Emily", "x": 0.5004, "y": -0.2224, "cluster": 2, "weights": { "Documents": 431, "Citations": 13528, "Norm. citations": 371.2338 }, "scores": { "Avg. pub. year": 2006.7889, "Avg. citations": 31.3875, "Avg. norm. citations": 0.8613 } } ``` -------------------------------- ### JSON Link Data Example Source: https://app.vosviewer.com/docs/file-types/json-file-type Example of link data between items in a JSON file. Specifies source and target item IDs along with the strength of the connection. ```json { "source_id": 1, "target_id": 2, "strength": 10 } ``` -------------------------------- ### Direct Link to VOSviewer JSON Visualization Source: https://app.vosviewer.com/docs/sharing/linking This link opens a VOSviewer JSON file directly in VOSviewer Online, setting the scale and curved links parameters. ```url https://app.vosviewer.com/?json=https://app.vosviewer.com/data/QSS_SM_2020-2021_co-authorship_network.json&scale=1.5&curved_links=false ``` -------------------------------- ### VOSviewer Online Link using Google Drive JSON Source: https://app.vosviewer.com/docs/sharing/linking This link launches VOSviewer Online and opens a network visualization from a JSON file hosted on Google Drive. ```url https://app.vosviewer.com/?json=https://drive.google.com/uc?id=16rdPZ3Md3b3mbsIftRZRjEUM6kkFX2zy ``` -------------------------------- ### Direct Link to VOSviewer Map and Network Files Source: https://app.vosviewer.com/docs/sharing/linking This link opens VOSviewer map and network files in VOSviewer Online, applying specific scale and curved links settings. ```url https://app.vosviewer.com/?map=https://app.vosviewer.com/data/QSS_SM_2020-2021_co-authorship_map.txt&network=https://app.vosviewer.com/data/QSS_SM_2020-2021_co-authorship_network.txt&scale=1.5&curved_links=false ``` -------------------------------- ### Google Drive Download Link for JSON File Source: https://app.vosviewer.com/docs/sharing/linking This is the converted Google Drive link that allows direct downloading of a JSON file, suitable for VOSviewer Online. ```url https://drive.google.com/uc?id=16rdPZ3Md3b3mbsIftRZRjEUM6kkFX2zy ``` -------------------------------- ### Google Drive Shareable Link for JSON File Source: https://app.vosviewer.com/docs/sharing/linking This is a standard Google Drive share link for a file. It needs to be converted for use with VOSviewer Online. ```url https://drive.google.com/file/d/16rdPZ3Md3b3mbsIftRZRjEUM6kkFX2zy/view?usp=sharing ``` -------------------------------- ### Embed VOSviewer Visualization in HTML Source: https://app.vosviewer.com/docs/sharing/embedding Use this HTML iframe code to embed a VOSviewer visualization directly into your webpage. Ensure the `src` attribute points to your desired visualization, optionally including parameters like `simple_ui=true` for a cleaner interface. ```html ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.