[
{
"id": 1,
"description": "Area graph of hwy with title Simple Area Graph and no legend. Orient the graph vertically.",
"config": {
"title": "Simple Area Graph",
"graphType": "Area",
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"showLegend": false
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Area"
},
{
"id": 2,
"description": "Create an Area graph with a vertical orientation. The x-axis displays the \"cty\" and \"hwy\" data.",
"config": {
"graphType": "Area",
"xAxis": [
"cty",
"hwy"
],
"graphOrientation": "vertical"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Area"
},
{
"id": 3,
"description": "Create an area graph with a stacked area type. The graph is oriented vertically. The x-axis displays the 'hwy' and 'cty' data.",
"config": {
"graphType": "Area",
"areaType": "stacked",
"xAxis": [
"hwy",
"cty"
],
"graphOrientation": "vertical"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Area"
},
{
"id": 4,
"description": "Create an area graph with a vertical orientation. The area type is set to 'percent', meaning the areas in the graph represent percentages. The x-axis of the graph displays the 'hwy' and 'cty' data.",
"config": {
"graphType": "Area",
"areaType": "percent",
"xAxis": [
"hwy",
"cty"
],
"graphOrientation": "vertical"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Area"
},
{
"id": 5,
"description": "Create an AreaLine graph with a vertical orientation. The x-axis displays the \"hwy\" data, and there is a second x-axis that displays the \"displ\" data. The second x-axis is visible. The title for the first x-axis is \"hwy\", and the title for the second x-axis is \"displ\".",
"config": {
"graphType": "AreaLine",
"xAxis": [
"hwy"
],
"xAxis2": [
"displ"
],
"graphOrientation": "vertical",
"xAxis2Show": true,
"xAxisTitle": "hwy",
"xAxis2Title": "displ"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "AreaLine"
},
{
"id": 6,
"description": "Create a bar graph with vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"hwy\" variable. The labels for the samples are rotated at 45 degrees.",
"config": {
"graphType": "Bar",
"groupingFactors": [
"class"
],
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"smpTextRotate": 45
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Bar"
},
{
"id": 7,
"description": "Create a vertical bar graph titled \"Count of class\", aligned in the center. The data is grouped by the \"class\" category. The sample text is rotated at 45 degrees. The summary type for the data when grouping is \"count\". The legend is not displayed in this graph.",
"config": {
"graphType": "Bar",
"groupingFactors": [
"class"
],
"graphOrientation": "vertical",
"smpTextRotate": 45,
"summaryType": "count",
"showLegend": false,
"title": "Count of class",
"titleAlign": "center"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Bar"
},
{
"id": 8,
"description": "Bar graph of hwy grouped and colored by drv. Draw a red line at 20 labeled left as Cutoff. Set the graph orientation to horizontal. Set maximum value of x-axis to 30.",
"config": {
"colorBy": "drv",
"decorations": {
"line": [
{
"align": "left",
"color": "rgb(255,0,0)",
"label": "Cutoff",
"value": 20
}
]
},
"graphOrientation": "horizontal",
"graphType": "Bar",
"groupingFactors": [
"drv"
],
"setMaxX": 30,
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Bar"
},
{
"id": 9,
"description": "Create a combination of a bar and line graph (BarLine). The data is grouped by the \"class\" category. The primary x-axis displays the \"cty\" and \"hwy\" variables, while the secondary x-axis displays the \"displ\" and \"cyl\" variables. The graph is oriented vertically. The legend is positioned at the bottom of the graph and is organized into 4 columns. The secondary x-axis is set to be visible. The maximum value for data on the x-axis is set to 30.",
"config": {
"graphType": "BarLine",
"groupingFactors": [
"class"
],
"xAxis": [
"cty",
"hwy"
],
"xAxis2": [
"displ",
"cyl"
],
"graphOrientation": "vertical",
"legendPosition": "bottom",
"legendColumns": 4,
"xAxis2Show": true,
"setMaxX": 30
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "BarLine"
},
{
"id": 10,
"description": "Create a Boxplot graph with a vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"hwy\" data. The text for the samples is rotated at 45 degrees.",
"config": {
"graphType": "Boxplot",
"groupingFactors": [
"class"
],
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"smpTextRotate": 45
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Boxplot"
},
{
"id": 11,
"description": "Create a Boxplot with a horizontal orientation. The data is grouped by the \"class\" category. The x-axis displays the \"hwy\" and \"cty\" variables. The original data points in the boxplot are shown and the data points are binned. The boxplot does not have any whiskers.",
"config": {
"graphType": "Boxplot",
"groupingFactors": [
"class"
],
"xAxis": [
"hwy",
"cty"
],
"graphOrientation": "horizontal",
"showBoxplotOriginalData": true,
"binned": true,
"boxplotWhiskersType": "none"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Boxplot"
},
{
"id": 12,
"description": "Show notched boxplot of hwy by class using single whiskers. Split the samples by class. Rotate the sample text at 45 degrees. Set the graph orientation to vertical.",
"config": {
"graphType": "Boxplot",
"boxplotNotched": true,
"boxplotWhiskersType": "single",
"groupingFactors": [
"class"
],
"splitSamplesBy": "class",
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"smpTextRotate": 45
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Boxplot"
},
{
"id": 13,
"description": "Create a Boxplot graph with a horizontal orientation. The data is grouped by the 'drv' and 'class' columns. The color of the variables is determined by the 'drv' column. The 'hwy' column is displayed on the X axis. The data in the boxplots are connected. The X axis on the bottom is hidden, while the X axis on the top is shown.",
"config": {
"graphType": "Boxplot",
"groupingFactors": [
"drv",
"class"
],
"colorBy": "drv",
"xAxis": [
"hwy"
],
"graphOrientation": "horizontal",
"boxplotConnect": true,
"xAxisShow": false,
"xAxis2Show": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Boxplot"
},
{
"id": 14,
"description": "Create a horizontal range boxplot. The graph type is \"Boxplot\" and the boxplot type is \"range\". The data is grouped by the \"drv\" factor. The x-axis displays the \"cty\" variable. The legend is not shown in this visualization. The title of the graph is \"Range Boxplot of cty grouped by drv\" and it is displayed in bold font style.",
"config": {
"graphType": "Boxplot",
"boxplotType": "range",
"groupingFactors": [
"drv"
],
"xAxis": [
"cty"
],
"graphOrientation": "horizontal",
"showLegend": false,
"title": "Range Boxplot of cty grouped by drv",
"titleFontStyle": "bold"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Boxplot"
},
{
"id": 15,
"description": "Make a hierarchical bubble plot of hwy by class, cyl and drv color by class",
"config": {
"circularType": "bubble",
"colorBy": "class",
"graphType": "Circular",
"hierarchy": [
"class",
"cyl",
"drv"
],
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Circular"
},
{
"id": 16,
"description": "Create a 2D scatter plot. The x-axis displays the 'cty' variable, while the y-axis displays the 'hwy' variable. The plot includes a contour, which is filled with color.",
"config": {
"graphType": "Scatter2D",
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
],
"isContour": true,
"contourFilled": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Contour"
},
{
"id": 17,
"description": "Create a 2D scatter plot. The x-axis displays the 'cyl' variable and the y-axis displays the 'displ' variable. The contour is shown in the plot and the data points in the contour are also visible. The minimum and maximum values for the x-axis are set to 2.5 and 10 respectively, while the minimum and maximum values for the y-axis are set to 0 and 7.5 respectively.",
"config": {
"graphType": "Scatter2D",
"xAxis": [
"cyl"
],
"yAxis": [
"displ"
],
"isContour": true,
"showContourDataPoints": true,
"setMinX": 2.5,
"setMaxX": 10,
"setMinY": 0,
"setMaxY": 7.5
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Contour"
},
{
"id": 18,
"description": "Create a Scatter2D graph. The data to be displayed on the Y axis is \"hwy\". The histogram bars are hidden in this configuration. However, the density kernel in histograms is shown, and it is filled. The histogram is created with all data.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy"
],
"hideHistogram": true,
"showHistogramDensity": true,
"showFilledHistogramDensity": true,
"showHistogram": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Density"
},
{
"id": 19,
"description": "Create a 2D scatter plot. The variables displayed on the Y-axis are 'hwy' and 'cty'. The histogram bars are hidden in this configuration. However, the density kernel in the histograms is displayed, and it is filled. The histogram is created with all data, and the median of the histogram is also shown.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"hideHistogram": true,
"showHistogramDensity": true,
"showFilledHistogramDensity": true,
"showHistogram": true,
"showHistogramMedian": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Density"
},
{
"id": 20,
"description": "Create a 2D scatter plot. The variables displayed on the Y-axis are \"hwy\" and \"cty\". The histogram bars are not hidden. The density kernel in histograms is shown. The filled histogram density is also shown. The histogram is created with all data.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"hideHistogram": false,
"showHistogramDensity": true,
"showFilledHistogramDensity": true,
"showHistogram": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Density"
},
{
"id": 21,
"description": "Show a scatter plot of hwy and cty with side density plots in the x and y axes. Show the median line.",
"config": {
"graphType": "Scatter2D",
"showFilledHistogramDensity": true,
"showHistogramDensity": true,
"showHistogramMedian": true,
"xAxis": [
"hwy"
],
"xAxisHistogramShow": true,
"yAxis": [
"cty"
],
"yAxisHistogramShow": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Density"
},
{
"id": 22,
"description": "Create a circular graph of the sunburst subtype. The hierarchy of the graph is based on the \"class\" column. The x-axis displays the \"hwy\" column. The legend is not shown in this graph. The border color of all objects in the graph is black.",
"config": {
"circularType": "sunburst",
"graphType": "Circular",
"hierarchy": [
"class"
],
"objectBorderColor": "black",
"showLegend": false,
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Donut"
},
{
"id": 23,
"description": "Create a circular graph of the sunburst subtype. The color of the variables is determined by the \"class\" column. The hierarchy for the graph is built using the \"class\" and \"cyl\" columns. The x-axis displays the \"hwy\" column. The legend is not shown in this graph. The border color for all objects in the graph is black.",
"config": {
"circularType": "sunburst",
"colorBy": "class",
"graphType": "Circular",
"hierarchy": [
"class",
"cyl"
],
"objectBorderColor": "black",
"showLegend": false,
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Sunburst"
},
{
"id": 24,
"description": "Create a Dotplot graph with vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"cty\" category. The data points in the plot are jittered for better visibility. The text labels for the samples are rotated at 45 degrees.",
"config": {
"graphType": "Dotplot",
"groupingFactors": [
"class"
],
"xAxis": [
"cty"
],
"graphOrientation": "vertical",
"jitter": true,
"smpTextRotate": 45
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Dotplot"
},
{
"id": 25,
"description": "Create a Dotplot graph. The data is grouped by the \"class\" category. The x-axis displays the \"cty\" category. The graph is oriented vertically. The data points in the dotplot are binned. The variables are colored by the \"drv\" category. The sample labels are rotated by 45 degrees.",
"config": {
"graphType": "Dotplot",
"groupingFactors": [
"class"
],
"xAxis": [
"cty"
],
"graphOrientation": "vertical",
"binned": true,
"colorBy": "drv",
"smpTextRotate": 45
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Dotplot"
},
{
"id": 26,
"description": "Create a DotLine graph with vertical orientation. The data is grouped by the \"class\" column. The graph includes a jitter effect for the data points. The x-axis displays data from the \"cty\" and \"hwy\" columns, while a second x-axis, which is visible, displays data from the \"displ\" and \"cyl\" columns. The legend is positioned at the top of the graph and is organized into 2 columns.",
"config": {
"graphType": "DotLine",
"groupingFactors": [
"class"
],
"jitter": true,
"xAxis": [
"cty",
"hwy"
],
"xAxis2": [
"displ",
"cyl"
],
"graphOrientation": "vertical",
"legendPosition": "top",
"legendColumns": 2,
"xAxis2Show": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "DotLine"
},
{
"id": 27,
"description": "Create a Heatmap. The x-axis of the graph displays the 'hwy' and 'cty' data. The samples in the data are clustered.",
"config": {
"graphType": "Heatmap",
"xAxis": [
"hwy",
"cty"
],
"samplesClustered": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Heatmap"
},
{
"id": 28,
"description": "Create a Heatmap. The sample metadata to overlay in one dimensional plots is \"class\". The names of the samples, groups or variables to be displayed in the X axis are \"hwy\" and \"cty\". The samples are clustered.",
"config": {
"graphType": "Heatmap",
"smpOverlays": [
"class"
],
"xAxis": [
"hwy",
"cty"
],
"samplesClustered": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Heatmap"
},
{
"id": 29,
"description": "Create a 2D scatter plot with a bin2d scatter type. The x-axis displays the \"hwy\" data, and the y-axis displays the \"cty\" data.",
"config": {
"graphType": "Scatter2D",
"scatterType": "bin2d",
"xAxis": [
"hwy"
],
"yAxis": [
"cty"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Hexplot-Binplot"
},
{
"id": 30,
"description": "Create a 2D scatter plot. The variable displayed on the Y-axis is \"hwy\". Additionally, a histogram is shown for all data.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy"
],
"showHistogram": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Histogram"
},
{
"id": 31,
"description": "Create a 2D scatter plot. The variables to be displayed on the Y axis are \"hwy\" and \"cty\". When multiple series are present, a staggered histogram is shown. The histogram is displayed with all data.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"histogramType": "staggered",
"showHistogram": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Histogram"
},
{
"id": 32,
"description": "Create a 2D scatter plot. The variables displayed on the Y-axis are 'hwy' and 'cty'. The histogram type is dodged and the histogram is set to be displayed.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"histogramType": "dodged",
"showHistogram": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Histogram"
},
{
"id": 33,
"description": "Create a 2D scatter plot. The Y-axis displays the \"hwy\" and \"cty\" data. When multiple series are present, a stacked histogram is shown. The histogram is displayed with all data.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"histogramType": "stacked",
"showHistogram": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Histogram"
},
{
"id": 34,
"description": "Create a 2D scatter plot. The data to be displayed on the Y-axis is \"hwy\". A histogram is shown using the \"cyl\" data. The histogram type is \"stacked\" when multiple series are present.",
"config": {
"graphType": "Scatter2D",
"histogramType": "stacked",
"showHistogram": "cyl",
"yAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Histogram"
},
{
"id": 35,
"description": "Create a line graph with a vertical orientation. The x-axis displays the \"hwy\" data. The legend is not shown in this graph.",
"config": {
"graphType": "Line",
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"showLegend": false
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Line"
},
{
"id": 36,
"description": "Create a Line graph with a horizontal orientation. The x-axis displays the 'hwy' and 'cty' data. The data is grouped by the 'class' category.",
"config": {
"graphType": "Line",
"xAxis": [
"hwy",
"cty"
],
"groupingFactors": [
"class"
],
"graphOrientation": "horizontal"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Line"
},
{
"id": 37,
"description": "Create a Line graph titled \"Line Graph of hwy and cty grouped by class\". The x-axis displays the \"hwy\" and \"cty\" data. The data is grouped by the \"class\" category. The line error type is set to \"area\" and the type of line used to join the points in the line graph is \"spline\". The graph is oriented vertically.",
"config": {
"graphOrientation": "vertical",
"graphType": "Line",
"groupingFactors": [
"class"
],
"lineErrorType": "area",
"lineType": "spline",
"title": "Line Graph of hwy and cty grouped by class",
"xAxis": [
"hwy",
"cty"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Line"
},
{
"id": 38,
"description": "Create a 2D scatter plot. The x-axis displays the 'cty' data, and the y-axis also displays the 'cty' data. The type of scatter plot used is 'qq'.",
"config": {
"graphType": "Scatter2D",
"xAxis": [
"cty"
],
"yAxis": [
"cty"
],
"scatterType": "qq"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "QQ"
},
{
"id": 39,
"description": "Create a 2D scatter plot. The variables are colored by the \"class\" attribute. The x-axis displays the \"hwy\" attribute, and the y-axis also displays the \"hwy\" attribute. The type of scatter plot used is \"qq\".",
"config": {
"graphType": "Scatter2D",
"colorBy": "class",
"xAxis": [
"hwy"
],
"yAxis": [
"hwy"
],
"scatterType": "qq"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "QQ"
},
{
"id": 40,
"description": "Create a 2D scatter plot. The x-axis displays the \"hwy\" data, while the y-axis displays the \"cty\" data. The Quantile Regression fit is shown in this scatter plot.",
"config": {
"graphType": "Scatter2D",
"xAxis": [
"hwy"
],
"yAxis": [
"cty"
],
"showQuantileRegressionFit": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Quantile"
},
{
"id": 41,
"description": "Create a gauge meter graph of the average of hwy using drv as factor.",
"config": {
"graphType": "Meter",
"meterGroup": "drv",
"meterSummaryType": "average",
"meterType": "gauge",
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Meter"
},
{
"id": 42,
"description": "Create a digital meter graph of the sum of hwy using cyl as factor.",
"config": {
"graphType": "Meter",
"meterGroup": "cyl",
"meterSummaryType": "sum",
"meterType": "digital",
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Meter"
},
{
"id": 43,
"description": "Create a Pie chart. The pie chart is divided based on the \"class\" column from the data.",
"config": {
"graphType": "Pie",
"pieBy": "class"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Pie"
},
{
"id": 44,
"description": "Create a circular graph with a radar subtype. The graph type for each ring in the circular plot is a line. The x-axis displays the 'hwy' column from the data. The sample names are not shown in this visualization.",
"config": {
"graphType": "Circular",
"circularType": "radar",
"ringGraphType": [
"line"
],
"xAxis": [
"hwy"
],
"showSampleNames": false
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Radar"
},
{
"id": 45,
"description": "Create a circular graph with a radar subtype. The graph type for each ring in the circular plot is a dot. The x-axis displays the \"cty\" column from the data. The sample names are not shown in this visualization.",
"config": {
"graphType": "Circular",
"circularType": "radar",
"ringGraphType": [
"dot"
],
"xAxis": [
"cty"
],
"showSampleNames": false
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Radar"
},
{
"id": 46,
"description": "Create a Scatter2D graph. The variable to be displayed on the Y-axis is \"hwy\". The ridgelines in the Scatter2D plot are created based on the \"class\". The histogram bars are hidden in this configuration. However, the density kernel in the histograms is displayed, and it is filled.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy"
],
"ridgeBy": "class",
"hideHistogram": true,
"showHistogramDensity": true,
"showFilledHistogramDensity": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Ridgeline"
},
{
"id": 47,
"description": "Create a Scatter2D type graph. The Y-axis of the graph displays the 'hwy' and 'cty' data. The ridgelines in the Scatter2D plot are created based on the 'class' data. The histogram bars in the graph are hidden. However, the density kernel in the histograms is displayed, and it is filled.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"ridgeBy": "class",
"hideHistogram": true,
"showHistogramDensity": true,
"showFilledHistogramDensity": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Ridgeline"
},
{
"id": 48,
"description": "Create a Scatter2D graph. The variables displayed on the Y axis are \"hwy\" and \"cty\". The ridgelines in the Scatter2D plot are created based on the \"class\". The histogram bars are hidden in this configuration. The density kernel in the histograms is displayed. The filled histogram density is also shown. The quantile 0.25 and 0.75 in the density plots are visible.",
"config": {
"graphType": "Scatter2D",
"yAxis": [
"hwy",
"cty"
],
"ridgeBy": "class",
"hideHistogram": true,
"showHistogramDensity": true,
"showFilledHistogramDensity": true,
"showHistogramQuantiles": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Ridgeline"
},
{
"id": 49,
"description": "Create a Scatter2D graph. The data to be displayed on the Y axis is \"hwy\". The ridgelines in the Scatter2D plot are created by \"class\". The histogram bars are hidden. The density kernel in the histograms is shown. The filled histogram density is also shown. The original data points in the histograms are displayed.",
"config": {
"graphType": "Scatter2D",
"hideHistogram": true,
"ridgeBy": "class",
"showFilledHistogramDensity": true,
"showHistogramDataPoints": true,
"showHistogramDensity": true,
"yAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Ridgeline"
},
{
"id": 50,
"description": "Create a 2D scatter plot. The x-axis displays the 'cty' data, while the y-axis displays the 'hwy' data. The 'cyl' data is treated as a string variable factor. The color of the data points is determined by the 'cyl' data, and the shape of the data points is determined by the 'drv' data. There are also line decorations in the plot: a red line at y=35, a blue line at y=20, and a black line at x=20.",
"config": {
"colorBy": "cyl",
"decorations": {
"line": [
{
"color": "rgba(255,0,0)",
"y": 35
},
{
"color": "rgba(0,0,255)",
"y": 20
},
{
"color": "rgba(0,0,0)",
"x": 20
}
]
},
"graphType": "Scatter2D",
"shapeBy": "drv",
"stringVariableFactors": [
"cyl"
],
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter2D"
},
{
"id": 51,
"description": "Show the correlation between cty and hwy in a scatter plot. Draw the regression fit.",
"config": {
"graphType": "Scatter2D",
"showRegressionFit": true,
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter2D"
},
{
"id": 52,
"description": "Create a 2D scatter plot of cty and displ. Color the regression fit and the data points by cyl. Treat cyl as a string variable factor.",
"config": {
"colorBy": "cyl",
"graphType": "Scatter2D",
"showRegressionFit": "cyl",
"stringVariableFactors": [
"cyl"
],
"xAxis": [
"cty"
],
"yAxis": [
"displ"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter2D"
},
{
"id": 53,
"description": "Create a Scatter2D graph. The x-axis displays the 'cty' data, while the y-axis displays the 'hwy' data. The loess fit is shown in this Scatter2D plot.",
"config": {
"graphType": "Scatter2D",
"showLoessFit": true,
"xAxis": [
"hwy"
],
"yAxis": [
"cty"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter2D"
},
{
"id": 54,
"description": "Create a 3D scatter plot. The x-axis displays the 'cty' variable, the y-axis displays the 'hwy' variable, and the z-axis displays the 'displ' variable. The 'cyl' variable is treated as a string variable factor. The color of the data points in the visualization is determined by the 'cyl' variable.",
"config": {
"graphType": "Scatter3D",
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
],
"zAxis": [
"displ"
],
"stringVariableFactors": [
"cyl"
],
"colorBy": "cyl"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter3D"
},
{
"id": 55,
"description": "Create a ScatterBubble2D type graph. The x-axis displays the 'cty' data, the y-axis displays the 'hwy' data, and the z-axis displays the 'displ' data. The 'cyl' data is treated as a string variable factor. The color of the variables in the graph is determined by the 'cyl' data.",
"config": {
"graphType": "ScatterBubble2D",
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
],
"zAxis": [
"displ"
],
"stringVariableFactors": [
"cyl"
],
"colorBy": "cyl"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "ScatterBubble2D"
},
{
"id": 56,
"description": "Create a stacked graph with a vertical orientation. The data is summarized by summing it up. The samples of each variable in the bar graphs are stacked by the \"drv\" annotation. The data is grouped by the \"class\" category. The sample labels are rotated by 45 degrees.",
"config": {
"graphOrientation": "vertical",
"graphType": "Stacked",
"groupingFactors": [
"class"
],
"smpTextRotate": 45,
"stackBy": "drv",
"summaryType": "sum"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Stacked"
},
{
"id": 57,
"description": "Create a Stacked graph with a horizontal orientation. The data is summarized by summing it up. The x-axis displays the 'hwy', 'cty', 'displ', and 'cyl' variables. The data is grouped by the 'class' variable.",
"config": {
"graphType": "Stacked",
"summaryType": "sum",
"xAxis": [
"hwy",
"cty",
"displ",
"cyl"
],
"groupingFactors": [
"class"
],
"graphOrientation": "horizontal"
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Stacked"
},
{
"id": 58,
"description": "Create a Stacked Line graph with a vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"cty\" and \"hwy\" categories, while the second x-axis, which is visible, displays the \"displ\" and \"cyl\" categories. The maximum value for data in the x-axis is set to 2500. The summary type for the data when grouping is set to \"sum\".",
"config": {
"graphOrientation": "vertical",
"graphType": "StackedLine",
"groupingFactors": [
"class"
],
"setMaxX": 2500,
"summaryType": "sum",
"xAxis": [
"cty",
"hwy"
],
"xAxis2": [
"displ",
"cyl"
],
"xAxis2Show": true
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "StackedLine"
},
{
"id": 59,
"description": "Create a Stacked Percent graph. The summary type for the data when grouping is set to sum. The x-axis displays the 'hwy', 'cty', 'displ', and 'cyl' variables. The data is grouped by the 'class' factor.",
"config": {
"graphType": "StackedPercent",
"groupingFactors": [
"class"
],
"summaryType": "sum",
"xAxis": [
"hwy",
"cty",
"displ",
"cyl"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "StackedPercent"
},
{
"id": 60,
"description": "Create a Boxplot with vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"hwy\" data. The observed data points in the boxplots are shown. The variables are colored by the \"cyl\" category. The \"cyl\" sample factors are treated as strings. The violin plot in the boxplots is shown. The data points in the boxplots are jittered. The boxplots are not shown when the violin plot is shown. The sample labels are rotated by 45 degrees.",
"config": {
"colorBy": "cyl",
"graphOrientation": "vertical",
"graphType": "Boxplot",
"groupingFactors": [
"class"
],
"jitter": true,
"showBoxplotIfViolin": false,
"showBoxplotOriginalData": true,
"showViolinBoxplot": true,
"smpTextRotate": 45,
"stringSampleFactors": [
"cyl"
],
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Violin"
},
{
"id": 61,
"description": "Create a Boxplot with the title \"Violin plot of hwy grouped by class\". The data is grouped by the \"class\" column. The x-axis displays the \"hwy\" column. The graph is oriented horizontally. A violin plot is shown in the boxplots, but the boxplots themselves are not displayed when the violin plot is shown. The violin plots are not trimmed. The legend is not displayed.",
"config": {
"graphOrientation": "horizontal",
"graphType": "Boxplot",
"groupingFactors": [
"class"
],
"showBoxplotIfViolin": false,
"showLegend": false,
"showViolinBoxplot": true,
"title": "Violin plot of hwy grouped by class",
"violinTrim": false,
"xAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Violin"
},
{
"id": 62,
"description": "Create a boxplot with the title \"Violin plot of cty grouped by cyl\". The data is grouped by the \"cyl\" column. The x-axis displays the \"cty\" column. The graph includes a violin plot and the orientation of the graph is vertical. If the violin plot is shown, the boxplot will also be displayed. The text for the samples is rotated 90 degrees.",
"config": {
"title": "Violin plot of cty grouped by cyl",
"graphType": "Boxplot",
"groupingFactors": [
"cyl"
],
"xAxis": [
"cty"
],
"showViolinBoxplot": true,
"graphOrientation": "vertical",
"showBoxplotIfViolin": true,
"smpTextRotate": 90
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Violin"
},
{
"id": 63,
"description": "Create a Boxplot graph with a vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"hwy\" variable. The labels for the samples are rotated at 45 degrees. The samples are segregated by the \"cyl\" category.",
"config": {
"graphType": "Boxplot",
"groupingFactors": [
"class"
],
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"smpTextRotate": 45,
"segregateSamplesBy": [
"cyl"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "NA"
},
{
"id": 64,
"description": "Create a bar graph with vertical orientation. The data is grouped by the \"class\" category. The x-axis displays the \"hwy\" category. The labels for the samples are rotated at 45 degrees. The samples are segregated by the \"cyl\" and \"drv\" categories.",
"config": {
"graphType": "Bar",
"groupingFactors": [
"class"
],
"xAxis": [
"hwy"
],
"graphOrientation": "vertical",
"smpTextRotate": 45,
"segregateSamplesBy": [
"cyl",
"drv"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Bar"
},
{
"id": 65,
"description": "Create a 2D scatter plot. The x-axis displays the cty variable, while the y-axis displays the 'hwy' variable. Segregate the variables by cyl and drv.",
"config": {
"graphType": "Scatter2D",
"segregateVariablesBy": [
"cyl",
"drv"
],
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter2D"
},
{
"id": 66,
"description": "Create a 2D scatter plot. The x-axis displays the 'cty' variable, while the y-axis displays the 'hwy' variable. The configuration also includes a DOE.",
"config": {
"asDOE": true,
"graphType": "Scatter2D",
"xAxis": [
"cty"
],
"yAxis": [
"hwy"
]
},
"headers": "Id,class,cty,cyl,drv,fl,manufacturer,model,trans,year,displ,hwy",
"type": "Scatter2D"
}
]