From 85fe099c65b027c9e558c440b44b258f35408b9f Mon Sep 17 00:00:00 2001 From: Birm Date: Thu, 12 Sep 2024 12:54:36 -0400 Subject: [PATCH] try html table --- README.md | 85 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 72 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index bb35db9..584f1e6 100644 --- a/README.md +++ b/README.md @@ -185,19 +185,78 @@ Additionally, the field “VISUALIZATION_VIEW_CONFIGURATION” contains a list o ## Visualization Types -| Chart Type | Use for | Photo | Fields | Other Configuration | -|----------------------|------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------|----------------------------| -| **PIE_CHART** | Proportions for distinct values of x. | | x | N/A | -| **BAR_CHART** | Total count of distinct values of x. | | x | N/A | -| **HISTOGRAM** | Binned continuous values of x, with binsCount bins. | | x | binsCount: number of ranges to split x into | -| **SCATTER_CHART** | The relationship between two generally continuous variables. | | x and y for the spatial axes values | N/A | -| **PARALLEL_COORDINATES** | Data points as lines going through a set of variables | | y: an array of each field to render in order. | N/A | -| **KM_CURVE** | Shows heatmap-like density in a 2d space of x,y. | | x and y for the spatial axes values | N/A | -| **DENSITY_2D** | Shows observation density in a 2d space of x,y. | | x and y for the spatial axes values | N/A | -| **HEATMAP** | Uses color to show mean value of z for discrete-grouped observations by x and y. | | x and y for spatial arrangement of values, z for colors | N/A | -| **HORIZONTAL_BAR_CHART** | Shows heatmap-like density in a 2d space of x,y. | | x and y for the spatial axes values | N/A | -| **VIS_DATA_TABLE** | A tabular representation of data for columns supplied. | | (list of objects representing fields to show in table) | Each object in the list has a 'dataKey' to find data in the source, and a 'label' to render the field as. | - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Chart TypeUse forPhotoFields
PIE_CHARTProportions for distinct values of x.Pie Chartx
BAR_CHARTTotal count of distinct values of x.Bar Chartx
HISTOGRAMBinned continuous values of x, with binsCount bins.Histogramx
SCATTER_CHARTThe relationship between two generally continuous variables.Scatter Chartx and y for the spatial axes values
PARALLEL_COORDINATESData points as lines going through a set of variables.Parallel Coordinatesy: an array of each field to render in order.
KM_CURVEShows heatmap-like density in a 2D space of x, y.x and y for the spatial axes values
DENSITY_2DShows observation density in a 2D space of x, y.Density 2Dx and y for the spatial axes values
HEATMAPUses color to show mean value of z for discrete-grouped observations by x and y.Heatmapx and y for spatial arrangement of values, z for colors
HORIZONTAL_BAR_CHARTShows heatmap-like density in a 2D space of x, y.x and y for the spatial axes values
VIS_DATA_TABLEA tabular representation of data for columns supplied.Data Table(list of objects representing fields to show in table)
## Interactive Demo Site