Add sub-entity tables for Map of Science comparison

Remove street view from Map of Science
Improve table UI
This commit is contained in:
kongchinhua 2011-11-10 21:38:08 +00:00
parent 61fc9c6d5b
commit fb89277658
12 changed files with 359 additions and 64 deletions

View file

@ -33,6 +33,19 @@
height: 480px;
}
#subEntityTableArea {
clear: both;
width: 100%;
padding-top:5px;
}
.subEntityTable {
width: 32%;
padding-top:5px;
padding-right: 8px;
float: left;
}
#percent-mapped-info {
float:right;
display: none;
@ -117,10 +130,34 @@ a.clear-selected-entities {
margin-left: 9px;
}
.drillDownIcon {
width:25px;
margin-left: 9px;
float: right;
}
.science-areas-filter {
margin-bottom: 10px;
}
.organization-header {
margin-bottom: 10px;
font-weight: bold;
}
.suborganization-title {
vertical-align: middle;
font-weight: bold;
}
.mapped-result {
font-size: 0.9em;
font-weight: bold;
float: right;
padding-top: 4px;
}
/* search in table */
.sDomSearchBar, .sDomComparisonSearchBar {
@ -179,6 +216,11 @@ hr.subtle-hr {
width: 100%;
}
.entity-datatable-table {
font-size: 0.9em;
width: 100%;
}
table.datatable-table tbody tr {
border-top: 3px solid;
}
@ -228,6 +270,19 @@ a.map-of-science-links {
font-size: 0.81em;
}
.subpaginatedtabs {
margin-bottom: 10px;
font-size: 0.81em;
float:right;
margin-top: 15px;
}
.subpaginatedtabs span {
padding-right: 5px;
cursor: pointer;
color: #2485AE;
}
/* --------------------------------------------------------------> */
/* SPECIAL STYLES FOR THE error */
/* --------------------------------------------------------------> */

View file

@ -13,9 +13,10 @@ var ComparisonDataTableWidget = Class.extend({
activeFilterClass: "comparison-active-filter",
filterInfoIconClass: "comparisonFilterInfoIcon"
},
init: function(sciMapWidget) {
init: function(sciMapWidget, entityTablesWidget) {
var me = this;
me.sciMapWidget = sciMapWidget;
me.entityTablesWidget = entityTablesWidget;
me.widgetType = "COMPARISON_SCIENCE_AREAS";
me.currentSelectedFilter = COMPARISON_TYPE.ORGANIZATION;
me.widget = '';
@ -90,7 +91,7 @@ var ComparisonDataTableWidget = Class.extend({
scienceAreasTH.html('Person');
}
var activityCountTH = $('<th>');
var activityCountTH = $('<th width="53">');
activityCountTH.html('# of pubs.');
activityCountTH.attr("id", "activity-count-column");
@ -112,7 +113,7 @@ var ComparisonDataTableWidget = Class.extend({
rowsToInsert[i++] = '<tr id="' + index + '" style="color: grey;"><td>' + item.type + '</td>';
rowsToInsert[i++] = '<td><input class="chk" type="checkbox" value="' + index + '"/></td>';
rowsToInsert[i++] = '<td>' + item.label + '</td>';
rowsToInsert[i++] = '<td>' + item.pubs.toFixed(2) + '</td></tr>';
rowsToInsert[i++] = '<td>' + item.pubs + '</td></tr>';
});
tbody.append(rowsToInsert.join(''));
@ -202,19 +203,10 @@ var ComparisonDataTableWidget = Class.extend({
createToolTip($("#comparisonSearchInfoIcon"), $("#comparisonSearchInfoTooltipText").html(), "topLeft");
/* Create csv download button */
console.log(comparisonScienceMapCsvDataUrlPrefix + me.uri);
var csvButton = '<hr class="subtle-hr"/><div id="main-science-areas-table-footer"><a href="' +
comparisonScienceMapCsvDataUrlPrefix + me.uri +
'" class="map-of-science-links">Save All as CSV</a></div>';
me.tableDiv.append(csvButton);
/* Create mapping statistic result */
var totalPublications = me.pubsWithNoJournals + me.pubsWithInvalidJournals + me.pubsMapped;
$("#mapped-publications").text(addCommasToNumber(me.pubsMapped));
$("#percent-mapped-info").show();
$("#percent-mapped").text((100 * me.pubsMapped / totalPublications).toFixed(2));
$("#total-publications").text(addCommasToNumber(totalPublications));
},
changeFilter: function(filterType) {
var me = this;
@ -232,7 +224,6 @@ var ComparisonDataTableWidget = Class.extend({
ACTIVE_DISCIPLINE_SUBDISCIPLINE_FILTER = me.currentSelectedFilter;
if (me.widget) {
me.widget.fnSettings()._iDisplayLength = 10;
me.widget.fnDraw();
// load one item if no item is selected. Need to be improved
if ($("input:checkbox[class=chk]:checked").length == 0) {
@ -253,15 +244,18 @@ var ComparisonDataTableWidget = Class.extend({
// Download data from server and add to markerManager if not gotten already
var me = this;
var url = scienceMapDataPrefix + uri;
downloader.download(url, function(data) {
downloader.downloadAndWait(url, function(data) {
me.sciMapWidget.loadEntity(data[0]);
// This is ugly, need fix!!!
$("#comparisonTbody > tr[id=" + index + "]").css("color", me.sciMapWidget.getColor(me.currentSelectedFilter, me.subEntities[index].label));
var color = me.sciMapWidget.getColor(me.currentSelectedFilter, me.subEntities[index].label);
$("#comparisonTbody > tr[id=" + index + "]").css("color", color);
me.entityTablesWidget.loadEntity(data[0], color);
});
},
unloadEntity: function(key, childKey, index) {
this.sciMapWidget.unloadEntity(key, childKey);
this.entityTablesWidget.unloadEntity(childKey);
// This is ugly, need fix!!!
$("#comparisonTbody > tr[id=" + index + "]").css("color", "grey");

View file

@ -1,8 +1,8 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
COMPARISON = {
"one":{ "name": "one", "color": "#1e90ff"},
"two":{ "name": "two", "color": "#ff69b4"},
"three":{ "name": "three", "color": "#32cd32"}
"one":{ "name": "one", "color": "#99CC00"},
"two":{ "name": "two", "color": "#FF9900"},
"three":{ "name": "three", "color": "#3399FF"}
}
COMPARISON_TYPE = {
@ -127,7 +127,6 @@ var ComparisonScimapWidget = Class.extend({
}
},
loadJsonData: function(data) {
this.isUnloaded = false;
},
loadEntity: function(data) {
var me = this;
@ -192,6 +191,22 @@ var ComparisonScimapWidget = Class.extend({
compositeManager.mouseOut(childKey);
}
},
mouseInNode: function(key, childKey, subdisciplineId) {
var compositeManager = this.getCompositeManager(key);
// Focus if only it is a valid manager
if (compositeManager == this.activeCompositeManager) {
// Focus all
compositeManager.registry.register(childKey).mouseIn(subdisciplineId);
}
},
mouseOutNode: function(key, childKey, subdisciplineId) {
var compositeManager = this.getCompositeManager(key);
// Unfocus if only it is a valid manager
if (compositeManager == this.activeCompositeManager) {
compositeManager.registry.register(childKey).mouseOut(subdisciplineId);
}
},
removeManager: function(key, childKey) {
var compositeManager = this.getCompositeManager(key);

View file

@ -15,10 +15,10 @@ var ScinodePolygon = CirclePolygon.extend({
this.setZIndex(-size);
},
focus: function() {
this.setOptions({strokeWeight: 3.0});
this.setOptions({strokeWeight: 1.2, strokeColor: '#000'});
},
unfocus: function() {
this.setOptions({strokeWeight: 1.0});
this.setOptions({strokeWeight: 1.0, strokeColor: '#808080'});
},
setContent: function(content) {
this.polygon.content = content;
@ -49,7 +49,7 @@ function createScinodeMarker(map, label, value, radius, color, latlng) {
var circleOptions = {
label: label,
value: value,
strokeColor: '#000',
strokeColor: '#808080',
strokeOpacity: 1.0,
strokeWeight: 1.0,
fillColor: color,

View file

@ -11,7 +11,9 @@ var DataTableWidget = Class.extend({
secondFilterID: "second-filter",
filterOptionClass: "filter-option",
activeFilterClass: "active-filter",
filterInfoIconClass: "filterInfoIcon"
filterInfoIconClass: "filterInfoIcon",
percentMappedInfoID: "percent-mapped-info"
},
init: function(sciMapWidget) {
var me = this;
@ -21,6 +23,7 @@ var DataTableWidget = Class.extend({
me.subdisciplineInfo = {};
me.disciplineInfo = {};
me.widget = '';
me.percentMappedDiv = $("#" + me.dom.percentMappedInfoID);
me.tableDiv = $('<div />');
$("#" + me.dom.containerID).append(this.tableDiv);
@ -71,9 +74,11 @@ var DataTableWidget = Class.extend({
},
show: function(key) {
this.tableDiv.show();
this.percentMappedDiv.show();
},
hide: function(key) {
this.tableDiv.hide();
this.percentMappedDiv.hide();
},
cleanView: function() {
this.hide();
@ -233,7 +238,6 @@ var DataTableWidget = Class.extend({
var totalPublications = me.pubsWithNoJournals + me.pubsWithInvalidJournals + me.pubsMapped;
$("#mapped-publications").text(addCommasToNumber(me.pubsMapped));
$("#percent-mapped-info").show();
$("#percent-mapped").text((100 * me.pubsMapped / totalPublications).toFixed(2));
$("#total-publications").text(addCommasToNumber(totalPublications));

View file

@ -0,0 +1,50 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
var EntityTablesWidget = Class.extend({
init: function(sciMapWidget) {
this.sciMapWidget = sciMapWidget;
this.keyToDataTable = {};
this.container = $('<div>');
$("#subEntityTableArea").append(this.container);
$("#subEntityTableArea").show();
},
initView: function(key) {
this.container.show();
},
cleanView: function(key) {
this.container.hide();
},
loadJsonData: function(data) {
},
loadEntity: function(data, color) {
var key = data.label;
var dataTable = this.getDataTable(key);
if (dataTable == null) {
dataTable = this._createDataTable(key, data, color);
}
dataTable.initView();
},
unloadEntity: function(key) {
this._removeDataTable(key);
},
getDataTable: function(key) {
return this.keyToDataTable[key];
},
_removeDataTable: function(key) {
var dataTable = this.getDataTable(key);
if (dataTable) {
dataTable.cleanView();
delete this.keyToDataTable[key];
}
},
_createDataTable: function(key, data, color) {
dataTable = new SimpleDataTableWidget({
sciMapWidget: this.sciMapWidget,
container: this.container
});
data.color = color;
dataTable.loadJsonData(data);
this.keyToDataTable[key] = dataTable;
return dataTable;
}
});

View file

@ -51,6 +51,7 @@ function initMap() {
var mapOptions = {
center: centerLatLng,
zoom: 1,
streetViewControl: false,
mapTypeControlOptions: {
mapTypeIds: []
}

View file

@ -0,0 +1,165 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
var SimpleDataTableWidget = Class.extend({
dom: {
paginationContainerClass : "subpaginatedtabs"
},
init: function(options) {
var me = this;
me.options = options;
me.sciMapWidget = options.sciMapWidget;
me.currentSelectedFilter = COMPARISON_TYPE.SUBDISCIPLINE;
me.widget = '';
me.tableDiv = $('<div />');
me.addToContainer();
},
loadJsonData: function(data) {
var me = this;
me.uri = data.uri;
me.label = data.label;
me.pubsWithNoJournals = data.pubsWithNoJournals;
me.pubsWithInvalidJournals = data.pubsWithInvalidJournals;
me.pubsMapped = data.pubsMapped;
me.type = data.type;
me.color = data.color;
me.subdisciplineActivity = data.subdisciplineActivity;
me.setupView();
},
addToContainer: function() {
this.options.container.append(this.tableDiv);
},
removeFromContainer: function() {
this.tableDiv.remove();
},
hasKey: function(key) {
return (this.keyToMarkerManagers.hasOwnProperty(key));
},
show: function(key) {
this.tableDiv.show();
},
hide: function(key) {
this.tableDiv.hide();
},
cleanView: function() {
this.removeFromContainer();
},
initView: function() {
this.addToContainer(this.tableDiv);
this.show();
},
setupView: function() {
var me = this;
me.tableDiv.addClass("subEntityTable");
/* Create filter */
entityVivoProfileURLPrefix
var organizationHeader = $('<div><a class="suborganization-title" href="' +
entityVivoProfileURLPrefix + me.uri +'">' +
truncateText(me.label, 23) + '</a><a href="' + entityMapOfScienceURLPrefix +
me.label.replace(/\s+/g, '') + '"><img class="drillDownIcon" src="' +
drillDownIconUrl + '" alt="drill down" title="drill down" /></a></div>');
me.tableDiv.append(organizationHeader);
/* Create table */
var table = $('<table>');
table.attr('id', 'entityDatatable');
table.addClass('entity-datatable-table');
/* Create table header */
var thead = $('<thead>');
var tr = $('<tr>');
/*var levelOfScienceAreaTH = $('<th>');
levelOfScienceAreaTH.html('Level of Science Area');*/
var scienceAreasTH = $('<th>');
scienceAreasTH.attr("id", "entity-science-areas-th");
scienceAreasTH.html('Sub-Disciplines');
var activityCountTH = $('<th width="53">');
activityCountTH.html('# of pubs.');
//tr.append(levelOfScienceAreaTH);
tr.append(scienceAreasTH);
tr.append(activityCountTH);
thead.append(tr);
table.append(thead);
/* Create tbody and contents */
var tbody = $('<tbody>');
var rowsToInsert = [];
var i = 0;
$.each(me.subdisciplineActivity, function(index, density) {
rowsToInsert[i++] = '<tr id="' + index + '">';
rowsToInsert[i++] = '<td style="color:' + me.color + ';">' + truncateText(SUBDISCIPLINES[index].label, 20) + '</td>';
rowsToInsert[i++] = '<td style="color:' + me.color + ';">' + density.toFixed(1) + '</td></tr>';
});
tbody.append(rowsToInsert.join(''));
table.append(tbody);
me.tableDiv.append(table);
/* Register events */
table.children("tbody").children("tr").mouseenter(function() {
me.sciMapWidget.mouseInNode(me.type, me.label, $(this).attr("id"));
});
table.children("tbody").children("tr").mouseleave(function() {
me.sciMapWidget.mouseOutNode(me.type, me.label, $(this).attr("id"));
});
/* Init DataTable object */
me.widget = table.dataTable({
"sDom": '<"' + me.dom.paginationContainerClass + '"p><"table-separator"><"datatablewrapper"t>',
"aaSorting": [
[1, "desc"], [0,'asc']
],
"asStripClasses": [],
"aoColumns": [{ "bSearchable": false },
{ "bSearchable": false }],
"iDisplayLength": 10,
"bInfo": true,
"bFilter": false,
"oLanguage": {
"sInfo": "_START_ - _END_ of _TOTAL_",
"sInfoEmpty": "No matching science areas found",
"sInfoFiltered": ""
},
"sPaginationType": "gmail_style",
"fnDrawCallback": function () {
}
});
/* Create csv download button */
var csvButton = '<hr class="subtle-hr" /><div id="main-science-areas-table-footer" style="background-color:' + me.color + ';"><a href="' +
entityMapOfScienceSubDisciplineCSVURLPrefix + me.uri +
'" class="map-of-science-links">Save All as CSV</a></div>';
me.tableDiv.append(csvButton);
/* Create mapping statistic result */
var totalPublications = me.pubsWithNoJournals + me.pubsWithInvalidJournals + me.pubsMapped;
var mappedText = '<a class="mapped-result" href="' + entityUnmappedJournalsCSVURLPrefix + me.uri + '">' +
(100 * me.pubsMapped / totalPublications).toFixed(2) + '% mapped</a>';
me.tableDiv.append($(mappedText));
me.widget.fnDraw();
}
});
function truncateText(text, len) {
var trunc = text;
if (text.length > len) {
trunc = text.substring(0, len);
trunc = trunc.replace(/\w+$/, '') + '<font title="' + text + '">...</font>'
}
return trunc;
}

View file

@ -125,7 +125,8 @@ var ComparisonVisModeController = VisModeController.extend({
initWidgets: function(map) {
var widgets = {};
widgets['scimap'] = new ComparisonScimapWidget(map);
widgets['sci_area_table'] = new ComparisonDataTableWidget(widgets['scimap']);
widgets['entity_area_table'] = new EntityTablesWidget(widgets['scimap']);
widgets['sci_area_table'] = new ComparisonDataTableWidget(widgets['scimap'], widgets['entity_area_table']);
this.widgets = widgets;
}

View file

@ -110,7 +110,7 @@ var subOrganizationPublicationTemporalGraphCommonURL = "${subOrganizationPublica
var jsonString = '${jsonContent!}';
var vivoDefaultNamespace = '${vivoDefaultNamespace!}';
var organizationLabel = "${organizationLabel}";
var organizationLabel = '${organizationLabel}';
var organizationVIVOProfileURL = "${organizationVivoProfileURL}";
var loadingImageLink = contextPath + "/images/visualization/ajax-loader-indicator.gif";

View file

@ -35,15 +35,19 @@
<script language="JavaScript" type="text/javascript">
var entityVivoProfileURLPrefix = "${urls.base}/individual?uri=";
var entityMapOfScienceURLPrefix = "${urls.base}${shortVisualizationURLRoot}/${mapOfScienceVisParam}/";
var contextPath = "${urls.base}";
var scienceMapDataPrefix = "${urls.base}${dataVisualizationURLRoot}?vis=${mapOfScienceVisParam}&output=json&uri=";
var scienceMapDataURL = scienceMapDataPrefix + "${entityURI}";
var entityUnmappedJournalsCSVURLPrefix = "${urls.base}${dataVisualizationURLRoot}?vis=${mapOfScienceVisParam}&output=csv&vis_mode=unlocated_journals&uri=";
var imageFolderPrefix = "${urls.images}/visualization/";
var mapOfScienceImageFolderPrefix = imageFolderPrefix + "mapofscience/";
var disciplineLabelImageUrlPrefix = mapOfScienceImageFolderPrefix + "labels/";
var infoIconUrl = "${urls.images}/iconInfo.png";
var imageFolderPrefix = "${urls.images}/visualization/";
var mapOfScienceImageFolderPrefix = imageFolderPrefix
+ "mapofscience/";
var disciplineLabelImageUrlPrefix = mapOfScienceImageFolderPrefix + "labels/";
var drillDownIconUrl = "${urls.images}/visualization/mapofscience/vivo-scimap.png";
var entityLabel = '${entityLabel}';
@ -58,6 +62,7 @@ var loadingImageLink = contextPath + "/images/visualization/ajax-loader-indicato
var refreshPageImageLink = contextPath + "/images/visualization/refresh-green.png";
var comparisonScienceMapCsvDataUrlPrefix = "${urls.base}${dataVisualizationURLRoot}?labelField=label&vis=entity_comparison&uri=";
var entityMapOfScienceSubDisciplineCSVURLPrefix = "${urls.base}${dataVisualizationURLRoot}?vis=${mapOfScienceVisParam}&output=csv&vis_mode=subdiscipline&&uri="
var entityMapOfScienceDisciplineCSVURL = "${entityMapOfScienceDisciplineCSVURL}";
var entityMapOfScienceSubDisciplineCSVURL = "${entityMapOfScienceSubDisciplineCSVURL}";
@ -87,6 +92,8 @@ ${scripts.add('<script type="text/javascript" src="http://maps.google.com/maps/a
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/ScimapWidget.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/DataTableWidget.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/ComparisonScimapWidget.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/SimpleDataTableWidget.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/EntityTablesWidget.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/ComparisonDataTableWidget.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/VisModeControllers.js"></script>',
'<script type="text/javascript" src="${urls.base}/js/visualization/mapofscience/VisCommonControl.js"></script>',

View file

@ -17,7 +17,7 @@ corresponding changes in the included Templates. -->
<h2 id="header-entity-label" class="hide-dom-on-init"><span><a id="entityMoniker" href="${entityVivoProfileURL}">${entityLabel}</a></span></h2>
<div id="map-of-science-info" class="hide-dom-on-init"> Explore <span id="mapped-publications" style="font-weight: bold"></span> publications activity across 554 scientific sub-disciplines
<div id="map-of-science-info" class="hide-dom-on-init"> Explore <span id="mapped-publications" style="font-weight: bold"></span> publications activity across 554 scientific subdisciplines
<img class="filterInfoIcon" id="imageIconOne" src="${urls.images}/iconInfo.png"
alt="information icon"
title="" />
@ -53,18 +53,21 @@ corresponding changes in the included Templates. -->
</div>
<div id="right-column"><div id="map_area"></div>
<div id="right-column">
<div id="map_area"></div>
<div id="percent-mapped-info">
mapped <span id="percent-mapped"></span>% of <span id="total-publications"></span> publications
<img class="filterInfoIcon" id="imageIconThree" src="${urls.images}/iconInfo.png"
alt="information icon"
title="" />
<img class="filterInfoIcon" id="imageIconThree" src="${urls.images}/iconInfo.png" alt="information icon" title="" />
<div id="download-unlocated-journal-info">
<a href="${entityMapOfScienceUnlocatedJournalsCSVURL}">Save Unmapped Publications</a>
</div>
</div>
<br />
<div id="subEntityTableArea"></div>
</div>
</div>
<#-- START TOOLTIP TEXT -->
@ -76,33 +79,33 @@ overlaid on the map of science. This particular page shows the publication activ
You can use VIVO's Map of Science visualization to see where ${entityLabel} is active in the world of science -- <em><b>based solely
on publications that have been loaded into this VIVO instance.</b></em><br /><br />
Overlaid circles are larger if ${entityLabel} has many publications in that sub-discipline, and are smaller if ${entityLabel} has
fewer publications in that sub-discipline.<br /><br />
Overlaid circles are larger if ${entityLabel} has many publications in that subdiscipline, and are smaller if ${entityLabel} has
fewer publications in that subdiscipline.<br /><br />
Circles are overlaid on the Map of Science itself, which is made of 554 interconnected sub-disciplines, shown as grey dots here.
A sub-discipline is defined as a cluster of journals. The Map of Science groups over 16,000 journals into 554 sub-disciplines using
similarities in their lists of references and key terms. Sub-disciplines that are especially similar to one another are interconnected,
Circles are overlaid on the Map of Science itself, which is made of 554 interconnected subdisciplines, shown as grey dots here.
A subdiscipline is defined as a cluster of journals. The Map of Science groups over 16,000 journals into 554 subdisciplines using
similarities in their lists of references and key terms. Subdisciplines that are especially similar to one another are interconnected,
and will be closer to one another on the map.
<br /><br />
For more information on this and other maps of science, see <a href='http://mapofscience.com'>http://mapofscience.com</a> or
<a href='http://scimaps.org'>http://scimaps.org</a></div>
<div id="toolTipTwo" style="display:none;">
${entityLabel}'s publication activity can be categorized into 13 disciplines or 554 sub-disciplines on the map of science.
${entityLabel}'s publication activity can be categorized into 13 disciplines or 554 subdisciplines on the map of science.
<br /><br />
The map of science is divided into 13 disciplines, each of which has its own area on the map, as well as its own color.
Each of these disciplines contains multiple sub-disciplines. You can hover over a discipline in the table below to show
Each of these disciplines contains multiple subdisciplines. You can hover over a discipline in the table below to show
which overlaid circles it corresponds to on the map.
<br /><br />
Each grey dot on the map represents one of the 554 sub-disciplines. A sub-discipline is defined as a cluster of journals.
Each grey dot on the map represents one of the 554 subdisciplines. A subdiscipline is defined as a cluster of journals.
We grouped over 16,000 journals into 554 disciplines using similarities in their lists of references and key terms.
Sub-disciplines that are especially similar to one another are connected by lines, and are closer to one another on the map.
You can hover over a sub-discipline in the table below to show which overlaid circle it corresponds to on the map.
Subdisciplines that are especially similar to one another are connected by lines, and are closer to one another on the map.
You can hover over a subdiscipline in the table below to show which overlaid circle it corresponds to on the map.
<br /><br />
<#--
In the table below, <b># of pubs.</b> column indicates number of publications that fall under a particular field (sub-discipline or
In the table below, <b># of pubs.</b> column indicates number of publications that fall under a particular field (subdiscipline or
discipline). Sometimes this number will be fractional. This happens when a journal in which the publication was published is associated
with more than one (sub)discipline. In these cases, the publication score is fractionally mapped based on the weight scores
of the journal.<br /><br />
@ -111,7 +114,7 @@ of the journal.<br /><br />
-->
The table below summarizes this institution's body of publications as plotted on the map of science.
Each row corresponds to a field (discipline or sub-discipline) on the map.
Each row corresponds to a field (discipline or subdiscipline) on the map.
<br /><br />
The <b># of pubs.</b> column shows how many of the publications were mapped to each field.
@ -134,8 +137,8 @@ may need to be cleaned up before they are recognized. You may contact a VIVO sys
concern.</div>
<div id="searchInfoTooltipText" style="display:none;">
<!-- Search for specific sub-discipline (or discipline) label in the first column of the table. -->
List only sub-disciplines (or disciplines) whose name contains this text.
<!-- Search for specific subdiscipline (or discipline) label in the first column of the table. -->
List only subdisciplines (or disciplines) whose name contains this text.
</div>
@ -143,8 +146,8 @@ concern.</div>
<div id="comparisonToolTipTwo" style="display:none;">
The organizations or people listed below are only those which are directly beneath ${entityLabel} in the
organization hierarchy. You may 'drill down' to see the organizations or people below a given sub-organization
by selecting the chart icon next to a selected sub-organization's name below the graph on the right.
organization hierarchy. You may 'drill down' to see the organizations or people below a given suborganization
by selecting the chart icon next to a selected suborganization's name below the graph on the right.
<br /><br />
The <b># of pubs.</b> column shows how many of the publications were mapped to each field.
@ -157,7 +160,7 @@ The <b>% activity</b> column shows what proportion of the publications were mapp
</div>
<div id="comparisonSearchInfoTooltipText" style="display:none;">
<!-- Search for specific sub-discipline (or discipline) label in the first column of the table. -->
<!-- Search for specific subdiscipline (or discipline) label in the first column of the table. -->
List only organizations (or people) whose name contains this text.
</div>
<#-- END TOOLTIP TEXT -->