NIH | National Cancer Institute | NCI Wiki  

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

For a complete overview, refer to the Data Description Schema Reference

Multiexcerpt include
nopaneltrue
MultiExcerptNameExitDisclaimer
PageWithExcerptwikicontent:Exit Disclaimer to Include
. The dataDescription.json file is the specification that the data provider provides, which provides the system, the information pertaining to the number of attributes, the type of each attribute, whether or not filtering would be performed on the attribute, etc.

...

For a complete overview, refer to the Schema Reference Used

Multiexcerpt include
nopaneltrue
MultiExcerptNameExitDisclaimer
PageWithExcerptwikicontent:Exit Disclaimer to Include
to define the interactive filters panel that is displayed on the left of the dashboard. This file describes how the dashboard should look.

...

  • dataTable
  • bubbleChart
  • imageGrid
  • heatMap
dataTable

Provides a tabular representation of the provided attributes. Shows 100 records at a time.

Code Block
{
"visualizationType" : "dataTable" ,
"attributes" :[
{ "attributeName" : "id" },
{ "attributeName" : "Ai" },
{ "attributeName" : "Di" }
]
}
bubbleChart

A bubble chart representation of the provided attributes. Can be used to visualize four dimensions.

...

At least one attributes needs to have dimension: true.

imageGrid

Creates an image grid using the images from the attribute having "type" : "image".

...

Requires an attribute to have "type" : "image" which shall be used as the location of the image.

heatMap
Code Block
{
"visualizationType" : "heatMap" ,
"attributes" :[
{
"attributeName" : "AgeatInitialDiagnosis" ,
"type" : "x"
},
{
"attributeName" : "KarnofskyScore" ,
"type" : "y"
}
],
"heading" : "Heat Map" ,
"subheading" : "AgeatInitialDiagnosis vs KarnofskyScore"
}

...