diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts b/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts index 4d641a6b5a243..2170ad6c9cff8 100644 --- a/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts +++ b/superset-frontend/cypress-base/cypress/e2e/explore/control.test.ts @@ -116,7 +116,7 @@ describe('Color scheme control', () => { describe('VizType control', () => { beforeEach(() => { interceptChart({ legacy: false }).as('tableChartData'); - interceptChart({ legacy: true }).as('lineChartData'); + interceptChart({ legacy: false }).as('bigNumberChartData'); }); it('Can change vizType', () => { @@ -126,15 +126,14 @@ describe('VizType control', () => { cy.contains('View all charts').click(); cy.get('.ant-modal-content').within(() => { - cy.get('button').contains('Evolution').click(); // change categories - cy.get('[role="button"]').contains('Line Chart').click(); + cy.get('button').contains('KPI').click(); // change categories + cy.get('[role="button"]').contains('Big Number').click(); cy.get('button').contains('Select').click(); }); cy.get('button[data-test="run-query-button"]').click(); cy.verifySliceSuccess({ - waitAlias: '@lineChartData', - chartSelector: 'svg', + waitAlias: '@bigNumberChartData', }); }); }); diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js index 2a687597f0dd1..cb83883cab771 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js +++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js @@ -40,7 +40,7 @@ const metadata = new ChartMetadata({ t('Multi-Layers'), t('Multi-Variables'), t('Scatter'), - t('Popular'), + t('Featured'), ], thumbnail, useLegacyApi: true, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts index a33ea731cc167..5600a7c419365 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts @@ -41,7 +41,7 @@ const metadata = { t('Business'), t('Legacy'), t('Percentages'), - t('Popular'), + t('Featured'), t('Report'), ], thumbnail, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts index b02a123b3f665..4210d06fad9ec 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts @@ -39,7 +39,7 @@ const metadata = { t('Advanced-Analytics'), t('Line'), t('Percentages'), - t('Popular'), + t('Featured'), t('Report'), t('Trend'), ], diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts index abe6fcd67b938..a379832f9e1c7 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts @@ -57,7 +57,7 @@ export default class EchartsBoxPlotChartPlugin extends EchartsChartPlugin< ), exampleGallery: [{ url: example }], name: t('Box Plot'), - tags: [t('ECharts'), t('Range'), t('Statistical')], + tags: [t('ECharts'), t('Range'), t('Statistical'), t('Featured')], thumbnail, }, transformProps, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts index 26b82308d7902..e3761f207e884 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts @@ -50,6 +50,7 @@ export default class EchartsBubbleChartPlugin extends ChartPlugin< t('Time'), t('Trend'), t('ECharts'), + t('Featured'), ], thumbnail, }), diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts index d679aa150b396..0d3948e2072ff 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts @@ -64,6 +64,7 @@ export default class EchartsFunnelChartPlugin extends EchartsChartPlugin< t('Report'), t('Sequential'), t('Trend'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts index 2d2418568010d..a3359826b374f 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts @@ -54,6 +54,7 @@ export default class EchartsGaugeChartPlugin extends EchartsChartPlugin< t('Comparison'), t('ECharts'), t('Report'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts index 87be95f2a4f57..347e61d1ef986 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts @@ -46,6 +46,7 @@ export default class EchartsGraphChartPlugin extends EchartsChartPlugin { t('Relational'), t('Structural'), t('Transformable'), + t('Featured'), ], thumbnail, behaviors: [ diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/index.ts index e9b2c7544177d..23ae090f3ea37 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/index.ts @@ -38,6 +38,7 @@ const metadata = new ChartMetadata({ t('Density'), t('Single Metric'), t('ECharts'), + t('Featured'), ], thumbnail, }); diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts index c65da2514406f..5d8eee2e57272 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts @@ -74,6 +74,7 @@ export default class EchartsTimeseriesChartPlugin extends EchartsChartPlugin< t('Multi-Variables'), t('Time'), t('Transformable'), + t('Featured'), ], queryObjectCount: 2, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts index f7921e03081b6..88d6e598b3774 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts @@ -71,7 +71,7 @@ export default class EchartsPieChartPlugin extends EchartsChartPlugin< t('Circular'), t('Comparison'), t('Percentages'), - t('Popular'), + t('Featured'), t('Proportional'), t('ECharts'), t('Nightingale'), diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts index 41feb2ff9073b..cac1b9f2e8e76 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts @@ -66,6 +66,7 @@ export default class EchartsRadarChartPlugin extends EchartsChartPlugin< t('Report'), t('Web'), t('ECharts'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts index fc3e75473d39d..d1715c7d818eb 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts @@ -44,7 +44,12 @@ export default class EchartsSunburstChartPlugin extends EchartsChartPlugin { ), exampleGallery: [{ url: example1 }, { url: example2 }], name: t('Sunburst Chart'), - tags: [t('ECharts'), t('Multi-Levels'), t('Proportional')], + tags: [ + t('ECharts'), + t('Multi-Levels'), + t('Proportional'), + t('Featured'), + ], thumbnail, }, transformProps, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts index 3380727d1c176..cac7237976056 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts @@ -70,7 +70,7 @@ export default class EchartsAreaChartPlugin extends EchartsChartPlugin< t('Line'), t('Transformable'), t('Stacked'), - t('Popular'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts index 70b42e7518882..f2a915555027f 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts @@ -80,7 +80,7 @@ export default class EchartsTimeseriesBarChartPlugin extends EchartsChartPlugin< t('Transformable'), t('Stacked'), t('Bar'), - t('Popular'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts index 7b4eb09a4bccd..a63168617d8e9 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts @@ -72,7 +72,7 @@ export default class EchartsTimeseriesLineChartPlugin extends EchartsChartPlugin t('Predictive'), t('Advanced-Analytics'), t('Line'), - t('Popular'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts index 24d02a066a741..0d29be0548229 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts @@ -73,7 +73,7 @@ export default class EchartsTimeseriesScatterChartPlugin extends EchartsChartPlu t('Time'), t('Transformable'), t('Scatter'), - t('Popular'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts index 79c8c13785449..49067c0173706 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts @@ -44,6 +44,7 @@ export default class EchartsTreeChartPlugin extends EchartsChartPlugin { t('Multi-Levels'), t('Relational'), t('Structural'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts index 47d541e738030..b2347e987ca44 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts @@ -66,6 +66,7 @@ export default class EchartsTreemapChartPlugin extends EchartsChartPlugin< t('Multi-Levels'), t('Percentages'), t('Proportional'), + t('Featured'), ], thumbnail, }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts index f0f2e9e5cb7a6..cf7639e5e1be8 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts @@ -61,7 +61,7 @@ export default class EchartsWaterfallChartPlugin extends ChartPlugin< { url: example3 }, ], name: t('Waterfall Chart'), - tags: [t('Categorical'), t('Comparison'), t('ECharts'), t('Popular')], + tags: [t('Categorical'), t('Comparison'), t('ECharts'), t('Featured')], thumbnail, }), transformProps, diff --git a/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts b/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts index c890c1a8f6a45..112145a9546fa 100644 --- a/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts +++ b/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts @@ -58,7 +58,7 @@ export default class PivotTableChartPlugin extends ChartPlugin< ), exampleGallery: [{ url: example }], name: t('Pivot Table'), - tags: [t('Additive'), t('Report'), t('Tabular'), t('Popular')], + tags: [t('Additive'), t('Report'), t('Tabular'), t('Featured')], thumbnail, }); diff --git a/superset-frontend/plugins/plugin-chart-table/src/index.ts b/superset-frontend/plugins/plugin-chart-table/src/index.ts index f7a861edba904..7f917258a8a0e 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/index.ts +++ b/superset-frontend/plugins/plugin-chart-table/src/index.ts @@ -47,7 +47,7 @@ const metadata = new ChartMetadata({ t('Additive'), t('Business'), t('Pattern'), - t('Popular'), + t('Featured'), t('Report'), t('Sequential'), t('Tabular'), diff --git a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeControl.test.jsx b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeControl.test.jsx index 67a6a19333942..4ec7bc4ecf313 100644 --- a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeControl.test.jsx +++ b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeControl.test.jsx @@ -50,7 +50,7 @@ describe('VizTypeControl', () => { new ChartMetadata({ name: 'vis1', thumbnail: '', - tags: ['Popular'], + tags: ['Featured'], }), ) .registerValue( diff --git a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx index 900947343843d..a935e984b5fcb 100644 --- a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx +++ b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx @@ -66,58 +66,6 @@ enum Sections { Tags = 'TAGS', } -const DEFAULT_ORDER = [ - 'line', - 'big_number', - 'big_number_total', - 'table', - 'pivot_table_v2', - 'echarts_timeseries_line', - 'echarts_area', - 'echarts_timeseries_bar', - 'echarts_timeseries_scatter', - 'pie', - 'mixed_timeseries', - 'dist_bar', - 'area', - 'bar', - 'deck_polygon', - 'time_table', - 'histogram', - 'deck_scatter', - 'deck_hex', - 'time_pivot', - 'deck_arc', - 'heatmap', - 'heatmap_v2', - 'deck_grid', - 'deck_screengrid', - 'treemap_v2', - 'box_plot', - 'sankey', - 'word_cloud', - 'mapbox', - 'kepler', - 'cal_heatmap', - 'rose', - 'bubble', - 'bubble_v2', - 'deck_geojson', - 'horizon', - 'deck_multi', - 'compare', - 'partition', - 'event_flow', - 'deck_path', - 'graph_chart', - 'world_map', - 'paired_ttest', - 'para', - 'country_map', -]; - -const typesWithDefaultOrder = new Set(DEFAULT_ORDER); - const THUMBNAIL_GRID_UNITS = 24; export const MAX_ADVISABLE_VIZ_GALLERY_WIDTH = 1090; @@ -128,7 +76,7 @@ const ALL_CHARTS = t('All charts'); const FEATURED = t('Featured'); -const RECOMMENDED_TAGS = [t('Popular'), t('ECharts'), t('Advanced-Analytics')]; +const RECOMMENDED_TAGS = [FEATURED, t('ECharts'), t('Advanced-Analytics')]; export const VIZ_TYPE_CONTROL_TEST_ID = 'viz-type-control'; @@ -372,13 +320,6 @@ const TitleLabelWrapper = styled.div` margin-left: ${({ theme }) => theme.gridUnit * 2}px; `; -function vizSortFactor(entry: VizEntry) { - if (typesWithDefaultOrder.has(entry.key)) { - return DEFAULT_ORDER.indexOf(entry.key); - } - return DEFAULT_ORDER.length; -} - interface ThumbnailProps { entry: VizEntry; selectedViz: string | null; @@ -494,7 +435,7 @@ const doesVizMatchSelector = (viz: ChartMetadata, selector: string) => (viz.tags || []).indexOf(selector) > -1; export default function VizTypeGallery(props: VizTypeGalleryProps) { - const { selectedViz, onChange, onDoubleClick, className } = props; + const { selectedViz, onChange, onDoubleClick, className, denyList } = props; const { mountedPluginMetadata } = usePluginContext(); const searchInputRef = useRef(); const [searchInputValue, setSearchInputValue] = useState(''); @@ -508,14 +449,14 @@ export default function VizTypeGallery(props: VizTypeGalleryProps) { const chartMetadata: VizEntry[] = useMemo(() => { const result = Object.entries(mountedPluginMetadata) .map(([key, value]) => ({ key, value })) - .filter(({ key }) => !props.denyList.includes(key)) + .filter(({ key }) => !denyList.includes(key)) .filter( ({ value }) => nativeFilterGate(value.behaviors || []) && !value.deprecated, - ); - result.sort((a, b) => vizSortFactor(a) - vizSortFactor(b)); + ) + .sort((a, b) => a.value.name.localeCompare(b.value.name)); return result; - }, [mountedPluginMetadata]); + }, [mountedPluginMetadata, denyList]); const chartsByCategory = useMemo(() => { const result: Record = {}; @@ -567,7 +508,8 @@ export default function VizTypeGallery(props: VizTypeGalleryProps) { ); const sortedMetadata = useMemo( - () => chartMetadata.sort((a, b) => a.key.localeCompare(b.key)), + () => + chartMetadata.sort((a, b) => a.value.name.localeCompare(b.value.name)), [chartMetadata], ); @@ -692,9 +634,9 @@ export default function VizTypeGallery(props: VizTypeGalleryProps) { if ( activeSelector === FEATURED && activeSection === Sections.Featured && - chartsByTags[t('Popular')] + chartsByTags[FEATURED] ) { - return chartsByTags[t('Popular')]; + return chartsByTags[FEATURED]; } if ( activeSection === Sections.Category && diff --git a/superset-frontend/src/pages/ChartCreation/index.tsx b/superset-frontend/src/pages/ChartCreation/index.tsx index f621519102e48..444fdf3e9ace6 100644 --- a/superset-frontend/src/pages/ChartCreation/index.tsx +++ b/superset-frontend/src/pages/ChartCreation/index.tsx @@ -89,6 +89,7 @@ const StyledContainer = styled.div` display: flex; flex-direction: row; align-items: center; + margin-bottom: ${theme.gridUnit * 5}px; & > div { min-width: 200px; @@ -144,6 +145,7 @@ const StyledContainer = styled.div` .ant-steps-item-description { margin-top: ${theme.gridUnit}px; + padding-bottom: ${theme.gridUnit}px; } } diff --git a/superset/examples/configs/charts/Featured Charts/Area.yaml b/superset/examples/configs/charts/Featured Charts/Area.yaml new file mode 100644 index 0000000000000..de053bfa69a2e --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Area.yaml @@ -0,0 +1,97 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Area +description: null +certified_by: null +certification_details: null +viz_type: echarts_area +params: + datasource: 22__table + viz_type: echarts_area + x_axis: order_date + time_grain_sqla: P1W + x_axis_sort_asc: true + x_axis_sort_series: name + x_axis_sort_series_ascending: true + metrics: + - expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: sales + description: null + expression: null + filterable: true + groupby: true + id: 734 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: SUM + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: SUM(sales) + optionName: metric_thuvfstatme_5o1pircsnev + groupby: + - deal_size + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_desc: true + row_limit: 10000 + truncate_metric: true + show_empty_columns: true + comparison_type: values + annotation_layers: [] + forecastPeriods: 10 + forecastInterval: 0.8 + x_axis_title_margin: 15 + y_axis_title_margin: 15 + y_axis_title_position: Left + sort_series_type: sum + color_scheme: supersetColors + seriesType: line + opacity: 0.2 + only_total: true + markerSize: 6 + show_legend: true + legendType: scroll + legendOrientation: top + x_axis_time_format: smart_date + rich_tooltip: true + tooltipTimeFormat: smart_date + y_axis_format: SMART_NUMBER + truncateXAxis: true + y_axis_bounds: + - null + - null + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 946cccb5-2101-44f5-98f8-501789a333cd +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Bar.yaml b/superset/examples/configs/charts/Featured Charts/Bar.yaml new file mode 100644 index 0000000000000..13be80c4f9867 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Bar.yaml @@ -0,0 +1,72 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Bar +description: null +certified_by: null +certification_details: null +viz_type: echarts_timeseries_bar +params: + datasource: 22__table + viz_type: echarts_timeseries_bar + x_axis: order_date + time_grain_sqla: P1M + x_axis_sort_asc: true + x_axis_sort_series: name + x_axis_sort_series_ascending: true + metrics: + - count + groupby: + - deal_size + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_desc: true + row_limit: 10000 + truncate_metric: true + show_empty_columns: true + comparison_type: values + annotation_layers: [] + forecastPeriods: 10 + forecastInterval: 0.8 + orientation: vertical + x_axis_title_margin: 15 + y_axis_title_margin: 15 + y_axis_title_position: Left + sort_series_type: sum + color_scheme: supersetColors + only_total: true + show_legend: true + legendType: scroll + legendOrientation: top + x_axis_time_format: smart_date + y_axis_format: SMART_NUMBER + truncateXAxis: true + y_axis_bounds: + - null + - null + rich_tooltip: true + tooltipTimeFormat: smart_date + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 7a37f7d8-6deb-4fd3-a150-01b0ff532dbd +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Big_Number.yaml b/superset/examples/configs/charts/Featured Charts/Big_Number.yaml new file mode 100644 index 0000000000000..acce2b47be36a --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Big_Number.yaml @@ -0,0 +1,42 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Big Number +description: null +certified_by: null +certification_details: null +viz_type: big_number_total +params: + datasource: 22__table + viz_type: big_number_total + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + header_font_size: 0.4 + subheader_font_size: 0.15 + y_axis_format: SMART_NUMBER + time_format: smart_date + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 5adc2abe-bfa3-4091-9838-4a470031208c +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Big_Number_with_Trendline.yaml b/superset/examples/configs/charts/Featured Charts/Big_Number_with_Trendline.yaml new file mode 100644 index 0000000000000..748d59d8e6b31 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Big_Number_with_Trendline.yaml @@ -0,0 +1,52 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Big Number with Trendline +description: null +certified_by: null +certification_details: null +viz_type: big_number +params: + datasource: 22__table + viz_type: big_number + x_axis: order_date + time_grain_sqla: P1M + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + show_trend_line: true + start_y_axis_at_zero: true + color_picker: + r: 0 + g: 122 + b: 135 + a: 1 + header_font_size: 0.4 + subheader_font_size: 0.15 + y_axis_format: SMART_NUMBER + time_format: smart_date + rolling_type: None + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 281656a3-3d8d-4423-8b58-b050d59fadd9 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Box_Plot.yaml b/superset/examples/configs/charts/Featured Charts/Box_Plot.yaml new file mode 100644 index 0000000000000..84950ed73823c --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Box_Plot.yaml @@ -0,0 +1,54 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Box Plot +description: null +certified_by: null +certification_details: null +viz_type: box_plot +params: + datasource: 22__table + viz_type: box_plot + columns: + - order_date + time_grain_sqla: P1D + temporal_columns_lookup: + order_date: true + groupby: + - product_line + metrics: + - count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + whiskerOptions: Tukey + x_axis_title_margin: 15 + y_axis_title_margin: 15 + y_axis_title_position: Left + color_scheme: supersetColors + x_ticks_layout: auto + number_format: SMART_NUMBER + date_format: smart_date + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: cc8eea37-f890-4816-8df0-b1354d7cd553 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Bubble.yaml b/superset/examples/configs/charts/Featured Charts/Bubble.yaml new file mode 100644 index 0000000000000..c52f25142c17a --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Bubble.yaml @@ -0,0 +1,107 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Bubble +description: null +certified_by: null +certification_details: null +viz_type: bubble_v2 +params: + datasource: 22__table + viz_type: bubble_v2 + series: product_line + entity: deal_size + x: + expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: quantity_ordered + description: null + expression: null + filterable: true + groupby: true + id: 739 + is_certified: false + is_dttm: false + python_date_format: null + type: BIGINT + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: SUM + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: SUM(quantity_ordered) + optionName: metric_ieq28dvzapm_wsnd3sj3trn + y: + expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: country + description: null + expression: null + filterable: true + groupby: true + id: 754 + is_certified: false + is_dttm: false + python_date_format: null + type: TEXT + type_generic: 1 + verbose_name: null + warning_markdown: null + aggregate: COUNT_DISTINCT + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: COUNT_DISTINCT(country) + optionName: metric_2pvgxo9w3dc_fazapv2jd65 + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + size: count + order_desc: true + row_limit: 10000 + color_scheme: supersetColors + show_legend: true + legendType: scroll + legendOrientation: top + max_bubble_size: "25" + tooltipSizeFormat: SMART_NUMBER + opacity: 0.6 + x_axis_title_margin: 30 + xAxisFormat: SMART_NUMBER + y_axis_title_margin: 30 + y_axis_format: SMART_NUMBER + truncateXAxis: true + y_axis_bounds: + - null + - null + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: c2014499-6800-43f0-908f-a2633db3ade7 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Funnel.yaml b/superset/examples/configs/charts/Featured Charts/Funnel.yaml new file mode 100644 index 0000000000000..219a66b5465b8 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Funnel.yaml @@ -0,0 +1,51 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Funnel +description: null +certified_by: null +certification_details: null +viz_type: funnel +params: + datasource: 22__table + viz_type: funnel + groupby: + - status + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10 + sort_by_metric: true + percent_calculation_type: first_step + color_scheme: supersetColors + show_legend: true + legendOrientation: top + legendMargin: 50 + tooltip_label_type: 5 + number_format: SMART_NUMBER + show_labels: true + show_tooltip_labels: true + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 7b90545c-1aac-447d-9175-a49f508f699d +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Gauge.yaml b/superset/examples/configs/charts/Featured Charts/Gauge.yaml new file mode 100644 index 0000000000000..45c0e1d731b76 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Gauge.yaml @@ -0,0 +1,54 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Gauge +description: null +certified_by: null +certification_details: null +viz_type: gauge_chart +params: + datasource: 22__table + viz_type: gauge_chart + groupby: + - deal_size + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10 + start_angle: 225 + end_angle: -45 + color_scheme: supersetColors + font_size: 13 + number_format: SMART_NUMBER + value_formatter: "{value}" + show_pointer: true + animation: true + show_axis_tick: false + show_split_line: false + split_number: 10 + show_progress: true + overlap: true + round_cap: false + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: 57ccf0f1-d28a-4127-9581-7153c5a15b62 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Graph.yaml b/superset/examples/configs/charts/Featured Charts/Graph.yaml new file mode 100644 index 0000000000000..72406fbe6ef84 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Graph.yaml @@ -0,0 +1,54 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Graph +description: null +certified_by: null +certification_details: null +viz_type: graph_chart +params: + datasource: 22__table + viz_type: graph_chart + source: deal_size + target: product_line + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10000 + color_scheme: supersetColors + show_legend: true + legendType: scroll + legendOrientation: top + layout: circular + edgeSymbol: none,arrow + roam: true + selectedMode: single + baseNodeSize: 20 + baseEdgeWidth: 3 + edgeLength: 400 + gravity: 0.3 + repulsion: 1000 + friction: 0.2 + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: be39bc2e-00c0-498b-96bf-858fe2361a89 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Heatmap.yaml b/superset/examples/configs/charts/Featured Charts/Heatmap.yaml new file mode 100644 index 0000000000000..9a8c1473f79e4 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Heatmap.yaml @@ -0,0 +1,59 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Heatmap +description: null +certified_by: null +certification_details: null +viz_type: heatmap_v2 +params: + datasource: 22__table + viz_type: heatmap_v2 + x_axis: product_line + time_grain_sqla: P1D + groupby: deal_size + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10000 + sort_x_axis: alpha_asc + sort_y_axis: alpha_asc + normalize_across: heatmap + legend_type: continuous + linear_color_scheme: superset_seq_1 + xscale_interval: -1 + yscale_interval: -1 + left_margin: auto + bottom_margin: auto + value_bounds: + - null + - null + y_axis_format: SMART_NUMBER + x_axis_time_format: smart_date + show_legend: true + show_percentage: true + show_values: true + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: c99dbe37-50da-4067-837c-3a8e5b68aafd +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Histogram.yaml b/superset/examples/configs/charts/Featured Charts/Histogram.yaml new file mode 100644 index 0000000000000..1789306bdb758 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Histogram.yaml @@ -0,0 +1,46 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Histogram +description: null +certified_by: null +certification_details: null +viz_type: histogram_v2 +params: + datasource: 22__table + viz_type: histogram_v2 + slice_id: 130 + column: quantity_ordered + groupby: + - deal_size + adhoc_filters: + - clause: WHERE + comparator: No filter + expressionType: SIMPLE + operator: TEMPORAL_RANGE + subject: order_date + row_limit: 10000 + bins: 10 + normalize: false + color_scheme: supersetAndPresetColors + show_value: false + show_legend: true + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: 2a89c19d-d0d2-4f5e-9007-e0fb65440e80 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Line.yaml b/superset/examples/configs/charts/Featured Charts/Line.yaml new file mode 100644 index 0000000000000..285121f741d3a --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Line.yaml @@ -0,0 +1,74 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Line +description: null +certified_by: null +certification_details: null +viz_type: echarts_timeseries_line +params: + datasource: 22__table + viz_type: echarts_timeseries_line + x_axis: order_date + time_grain_sqla: P1M + x_axis_sort_asc: true + x_axis_sort_series: name + x_axis_sort_series_ascending: true + metrics: + - count + groupby: + - product_line + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_desc: true + row_limit: 10000 + truncate_metric: true + show_empty_columns: true + comparison_type: values + annotation_layers: [] + forecastPeriods: 10 + forecastInterval: 0.8 + x_axis_title_margin: 15 + y_axis_title_margin: 15 + y_axis_title_position: Left + sort_series_type: sum + color_scheme: supersetColors + seriesType: line + only_total: true + opacity: 0.2 + markerSize: 6 + show_legend: true + legendType: scroll + legendOrientation: top + x_axis_time_format: smart_date + rich_tooltip: true + tooltipTimeFormat: smart_date + y_axis_format: SMART_NUMBER + truncateXAxis: true + y_axis_bounds: + - null + - null + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 79567e46-97f6-4cd2-8e98-4cd211389743 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Mixed.yaml b/superset/examples/configs/charts/Featured Charts/Mixed.yaml new file mode 100644 index 0000000000000..86cd8df7b9040 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Mixed.yaml @@ -0,0 +1,109 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Mixed +description: null +certified_by: null +certification_details: null +viz_type: mixed_timeseries +params: + datasource: 22__table + viz_type: mixed_timeseries + x_axis: order_date + time_grain_sqla: P1M + metrics: + - expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: sales + description: null + expression: null + filterable: true + groupby: true + id: 734 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: SUM + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: SUM(sales) + optionName: metric_b9hph4jr9i_nayy40sodwl + groupby: [] + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_desc: true + row_limit: 10000 + truncate_metric: true + comparison_type: values + metrics_b: + - count + groupby_b: [] + adhoc_filters_b: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_desc_b: true + row_limit_b: 10000 + truncate_metric_b: true + comparison_type_b: values + annotation_layers: [] + x_axis_title_margin: 15 + y_axis_title_margin: 15 + y_axis_title_position: Left + color_scheme: supersetColors + seriesType: line + opacity: 0.2 + markerSize: 6 + yAxisIndex: 1 + seriesTypeB: bar + opacityB: 0.2 + markerSizeB: 6 + yAxisIndexB: 0 + show_legend: true + legendType: scroll + legendOrientation: top + x_axis_time_format: smart_date + rich_tooltip: true + tooltipTimeFormat: smart_date + truncateXAxis: true + y_axis_bounds: + - null + - null + y_axis_format: SMART_NUMBER + y_axis_bounds_secondary: + - null + - null + y_axis_format_secondary: SMART_NUMBER + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: bb394e7b-0cfc-47ba-b067-541964545752 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Pie.yaml b/superset/examples/configs/charts/Featured Charts/Pie.yaml new file mode 100644 index 0000000000000..37abd9d92993b --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Pie.yaml @@ -0,0 +1,78 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Pie +description: null +certified_by: null +certification_details: null +viz_type: pie +params: + datasource: 22__table + viz_type: pie + groupby: + - product_line + metric: + expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: sales + description: null + expression: null + filterable: true + groupby: true + id: 734 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: SUM + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: SUM(sales) + optionName: metric_m2fycvcvjie_4gnezrycwmb + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 100 + sort_by_metric: true + color_scheme: supersetColors + show_labels_threshold: 5 + show_legend: true + legendType: scroll + legendOrientation: top + label_type: key + number_format: SMART_NUMBER + date_format: smart_date + show_labels: true + labels_outside: true + outerRadius: 70 + innerRadius: 30 + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 02ed54c5-dc22-468c-9edf-729b5401b182 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Pivot_Table.yaml b/superset/examples/configs/charts/Featured Charts/Pivot_Table.yaml new file mode 100644 index 0000000000000..ecfc5a8d2c3b6 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Pivot_Table.yaml @@ -0,0 +1,78 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Pivot Table +description: null +certified_by: null +certification_details: null +viz_type: pivot_table_v2 +params: + datasource: 22__table + viz_type: pivot_table_v2 + groupbyColumns: + - product_line + groupbyRows: + - country + - city + time_grain_sqla: P1D + temporal_columns_lookup: + order_date: true + metrics: + - expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: sales + description: null + expression: null + filterable: true + groupby: true + id: 734 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: SUM + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: SUM(sales) + optionName: metric_psnoaxdky5h_ojfgcygk97c + metricsLayout: COLUMNS + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10000 + order_desc: true + aggregateFunction: Sum + valueFormat: SMART_NUMBER + date_format: smart_date + rowOrder: key_a_to_z + colOrder: key_a_to_z + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: fcf2a0cf-0079-4f59-854f-d28297b07bf0 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Radar.yaml b/superset/examples/configs/charts/Featured Charts/Radar.yaml new file mode 100644 index 0000000000000..cced959532d8d --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Radar.yaml @@ -0,0 +1,100 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Radar +description: null +certified_by: null +certification_details: null +viz_type: radar +params: + datasource: 22__table + viz_type: radar + groupby: + - product_line + metrics: + - count + - expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: price_each + description: null + expression: null + filterable: true + groupby: true + id: 733 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: AVG + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: AVG(price_each) + optionName: metric_ethqy44wrel_gsqbm609hxt + - expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: sales + description: null + expression: null + filterable: true + groupby: true + id: 734 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: AVG + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: AVG(sales) + optionName: metric_r5emvf2ybfe_blvnta3absu + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10 + color_scheme: supersetColors + show_legend: true + legendType: scroll + legendOrientation: top + legendMargin: "" + show_labels: false + label_type: value + label_position: top + number_format: SMART_NUMBER + date_format: smart_date + is_circle: true + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: 1be00870-89b8-4ba0-a451-1fe56ef89581 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Scatter_Plot.yaml b/superset/examples/configs/charts/Featured Charts/Scatter_Plot.yaml new file mode 100644 index 0000000000000..f2c76fe746a05 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Scatter_Plot.yaml @@ -0,0 +1,72 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Scatter Plot +description: null +certified_by: null +certification_details: null +viz_type: echarts_timeseries_scatter +params: + datasource: 22__table + viz_type: echarts_timeseries_scatter + x_axis: order_date + time_grain_sqla: P1D + x_axis_sort_asc: true + x_axis_sort_series: name + x_axis_sort_series_ascending: true + metrics: + - count + groupby: + - deal_size + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_desc: true + row_limit: 10000 + truncate_metric: true + show_empty_columns: true + comparison_type: values + annotation_layers: [] + forecastPeriods: 10 + forecastInterval: 0.8 + x_axis_title_margin: 15 + y_axis_title_margin: 15 + y_axis_title_position: Left + sort_series_type: sum + color_scheme: supersetColors + only_total: true + markerSize: 6 + show_legend: true + legendType: scroll + legendOrientation: top + x_axis_time_format: smart_date + rich_tooltip: true + tooltipTimeFormat: smart_date + y_axis_format: SMART_NUMBER + truncateXAxis: true + y_axis_bounds: + - null + - null + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 5b629855-f912-4e28-8444-56b9db83e5b3 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Sunburst.yaml b/superset/examples/configs/charts/Featured Charts/Sunburst.yaml new file mode 100644 index 0000000000000..7e39133cb7c6c --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Sunburst.yaml @@ -0,0 +1,48 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Sunburst +description: null +certified_by: null +certification_details: null +viz_type: sunburst_v2 +params: + datasource: 22__table + viz_type: sunburst_v2 + columns: + - year + - product_line + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10000 + color_scheme: supersetColors + linear_color_scheme: superset_seq_1 + show_labels: true + show_labels_threshold: 5 + label_type: key + number_format: ~g + date_format: smart_date + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: 47b26af7-19e0-4ca1-9cf6-b74b2f1f7e3c +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Table.yaml b/superset/examples/configs/charts/Featured Charts/Table.yaml new file mode 100644 index 0000000000000..37a22af8c5133 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Table.yaml @@ -0,0 +1,57 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Table +description: null +certified_by: null +certification_details: null +viz_type: table +params: + datasource: 22__table + viz_type: table + query_mode: raw + groupby: [] + time_grain_sqla: P1D + temporal_columns_lookup: + order_date: true + all_columns: + - order_date + - product_line + - status + - price_each + - sales + percent_metrics: [] + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + order_by_cols: [] + row_limit: 1000 + server_page_length: 10 + order_desc: true + table_timestamp_format: smart_date + show_cell_bars: true + color_pn: true + allow_render_html: true + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: d0e7b367-f16f-4d7a-adde-7c7f455fa9bc +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Tree.yaml b/superset/examples/configs/charts/Featured Charts/Tree.yaml new file mode 100644 index 0000000000000..a1be973da912d --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Tree.yaml @@ -0,0 +1,43 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Tree +description: null +certified_by: null +certification_details: null +viz_type: tree_chart +params: + datasource: 8__table + viz_type: tree_chart + id: id + parent: parent + name: name + root_node_id: "1" + metric: count + adhoc_filters: [] + row_limit: 1000 + layout: radial + node_label_position: top + child_label_position: top + symbol: emptyCircle + symbolSize: 7 + roam: false + extra_form_data: {} + dashboards: [] +cache_timeout: null +uuid: 57e7f05e-0c9a-4313-8a33-e6d0999824af +version: 1.0.0 +dataset_uuid: f710a997-c65e-4aa6-aaed-b7d6998565ae diff --git a/superset/examples/configs/charts/Featured Charts/Treemap.yaml b/superset/examples/configs/charts/Featured Charts/Treemap.yaml new file mode 100644 index 0000000000000..b959963c20383 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Treemap.yaml @@ -0,0 +1,48 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: TreeMap +description: null +certified_by: null +certification_details: null +viz_type: treemap_v2 +params: + datasource: 23__table + viz_type: treemap_v2 + groupby: + - year + - product_line + metric: count + row_limit: 10000 + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + color_scheme: supersetColors + show_labels: true + show_upper_labels: true + label_type: key_value + number_format: SMART_NUMBER + date_format: smart_date + extra_form_data: {} + dashboards: [] +query_context: null +cache_timeout: null +uuid: 36367ecc-e09a-4c9f-80df-5dbaf97f741f +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Waterfall.yaml b/superset/examples/configs/charts/Featured Charts/Waterfall.yaml new file mode 100644 index 0000000000000..6c79ea1c7c97e --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Waterfall.yaml @@ -0,0 +1,85 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Waterfall +description: null +certified_by: null +certification_details: null +viz_type: waterfall +params: + datasource: 22__table + viz_type: waterfall + x_axis: order_date + time_grain_sqla: P3M + groupby: [] + metric: + expressionType: SIMPLE + column: + advanced_data_type: null + certification_details: null + certified_by: null + column_name: sales + description: null + expression: null + filterable: true + groupby: true + id: 734 + is_certified: false + is_dttm: false + python_date_format: null + type: DOUBLE PRECISION + type_generic: 0 + verbose_name: null + warning_markdown: null + aggregate: SUM + sqlExpression: null + datasourceWarning: false + hasCustomLabel: false + label: SUM(sales) + optionName: metric_uufmfvmm7_zhsh1h4vbh + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10000 + show_value: true + increase_color: + r: 90 + g: 193 + b: 137 + a: 1 + decrease_color: + r: 224 + g: 67 + b: 85 + a: 1 + total_color: + r: 102 + g: 102 + b: 102 + a: 1 + x_axis_time_format: smart_date + x_ticks_layout: auto + y_axis_format: SMART_NUMBER + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: 97c77c60-0613-4066-aec7-a9c6a75ad8d8 +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/Word_Cloud.yaml b/superset/examples/configs/charts/Featured Charts/Word_Cloud.yaml new file mode 100644 index 0000000000000..da984f833175c --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/Word_Cloud.yaml @@ -0,0 +1,44 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: Word Cloud +description: null +certified_by: null +certification_details: null +viz_type: word_cloud +params: + datasource: 22__table + viz_type: word_cloud + series: customer_name + metric: count + adhoc_filters: + - clause: WHERE + subject: order_date + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 100 + size_from: 10 + size_to: 70 + rotation: square + color_scheme: supersetColors + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: d3967f7d-58ea-43fe-9961-7e061affdb1c +version: 1.0.0 +dataset_uuid: e8623bb9-5e00-f531-506a-19607f5f8005 diff --git a/superset/examples/configs/charts/Featured Charts/World_Map.yaml b/superset/examples/configs/charts/Featured Charts/World_Map.yaml new file mode 100644 index 0000000000000..e7ae235eb9461 --- /dev/null +++ b/superset/examples/configs/charts/Featured Charts/World_Map.yaml @@ -0,0 +1,53 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +slice_name: World Map +description: null +certified_by: null +certification_details: null +viz_type: world_map +params: + datasource: 1__table + viz_type: world_map + entity: country_name + country_fieldtype: name + metric: sum__SP_POP_TOTL + adhoc_filters: + - clause: WHERE + subject: year + operator: TEMPORAL_RANGE + comparator: No filter + expressionType: SIMPLE + row_limit: 10000 + show_bubbles: true + secondary_metric: sum__SP_RUR_TOTL + max_bubble_size: "25" + color_picker: + r: 0 + g: 122 + b: 135 + a: 1 + color_by: metric + linear_color_scheme: superset_seq_1 + color_scheme: supersetColors + y_axis_format: SMART_NUMBER + extra_form_data: {} + dashboards: + - 13 +cache_timeout: null +uuid: f0606234-1644-426f-8fc6-3eaf8e77fd58 +version: 1.0.0 +dataset_uuid: 3cee7b7f-0009-4d9d-8de4-1da4cad4569e diff --git a/superset/examples/configs/dashboards/Featured_Charts.yaml b/superset/examples/configs/dashboards/Featured_Charts.yaml new file mode 100644 index 0000000000000..2d0e0c4f1b296 --- /dev/null +++ b/superset/examples/configs/dashboards/Featured_Charts.yaml @@ -0,0 +1,490 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +dashboard_title: Featured Charts +description: null +css: "" +slug: null +certified_by: "" +certification_details: "" +published: false +uuid: 9992d759-90d7-4d2a-b34d-373a8aaa9889 +position: + CHART-2Z41H9ulKK: + children: [] + id: CHART-2Z41H9ulKK + meta: + chartId: 107 + height: 50 + sliceName: Big Number with Trendline + uuid: 281656a3-3d8d-4423-8b58-b050d59fadd9 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-UvMsszSUji + type: CHART + CHART-33vjmwrGX1: + children: [] + id: CHART-33vjmwrGX1 + meta: + chartId: 127 + height: 50 + sliceName: Sunburst + uuid: 47b26af7-19e0-4ca1-9cf6-b74b2f1f7e3c + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-Jq9auQfs6- + type: CHART + CHART-3tEC_8e-uS: + children: [] + id: CHART-3tEC_8e-uS + meta: + chartId: 109 + height: 50 + sliceName: Table + uuid: d0e7b367-f16f-4d7a-adde-7c7f455fa9bc + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-3XARWMYOfz + type: CHART + CHART-4Zm6Q1VGY5: + children: [] + id: CHART-4Zm6Q1VGY5 + meta: + chartId: 125 + height: 50 + sliceName: Mixed + uuid: bb394e7b-0cfc-47ba-b067-541964545752 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-UxgGmS9gb3 + type: CHART + CHART-4iGGk_pxEN: + children: [] + id: CHART-4iGGk_pxEN + meta: + chartId: 108 + height: 50 + sliceName: Big Number + uuid: 5adc2abe-bfa3-4091-9838-4a470031208c + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-LIWnqpnIk5 + type: CHART + CHART-A4qrvR24Ne: + children: [] + id: CHART-A4qrvR24Ne + meta: + chartId: 128 + height: 50 + sliceName: Tree + uuid: 57e7f05e-0c9a-4313-8a33-e6d0999824af + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-3XARWMYOfz + type: CHART + CHART-AFzv0kyWG_: + children: [] + id: CHART-AFzv0kyWG_ + meta: + chartId: 115 + height: 50 + sliceName: Pie + uuid: 02ed54c5-dc22-468c-9edf-729b5401b182 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-UxgGmS9gb3 + type: CHART + CHART-CR0-igYucm: + children: [] + id: CHART-CR0-igYucm + meta: + chartId: 118 + height: 50 + sliceName: Heatmap + uuid: c99dbe37-50da-4067-837c-3a8e5b68aafd + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-cUv-aKn4Yt + type: CHART + CHART-DqaJJ8Fse6: + children: [] + id: CHART-DqaJJ8Fse6 + meta: + chartId: 9 + height: 50 + sliceName: Treemap + uuid: 36367ecc-e09a-4c9f-80df-5dbaf97f741f + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-3XARWMYOfz + type: CHART + CHART-EpsTnvUMuW: + children: [] + id: CHART-EpsTnvUMuW + meta: + chartId: 111 + height: 50 + sliceName: Line + uuid: 79567e46-97f6-4cd2-8e98-4cd211389743 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-cUv-aKn4Yt + type: CHART + CHART-Es5rxmzfgG: + children: [] + id: CHART-Es5rxmzfgG + meta: + chartId: 113 + height: 50 + sliceName: Bar + uuid: 7a37f7d8-6deb-4fd3-a150-01b0ff532dbd + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-LIWnqpnIk5 + type: CHART + CHART-FVeZR4VUUl: + children: [] + id: CHART-FVeZR4VUUl + meta: + chartId: 120 + height: 50 + sliceName: Box Plot + uuid: cc8eea37-f890-4816-8df0-b1354d7cd553 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-UvMsszSUji + type: CHART + CHART-GoiTIYEOOF: + children: [] + id: CHART-GoiTIYEOOF + meta: + chartId: 121 + height: 50 + sliceName: Bubble + uuid: c2014499-6800-43f0-908f-a2633db3ade7 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-UvMsszSUji + type: CHART + CHART-KE7lk61Tbt: + children: [] + id: CHART-KE7lk61Tbt + meta: + chartId: 119 + height: 50 + sliceName: Word Cloud + uuid: d3967f7d-58ea-43fe-9961-7e061affdb1c + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-ux6j1ePT8I + type: CHART + CHART-SjTqfJNmup: + children: [] + id: CHART-SjTqfJNmup + meta: + chartId: 124 + height: 50 + sliceName: Graph + uuid: be39bc2e-00c0-498b-96bf-858fe2361a89 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-W7YILGiS0- + type: CHART + CHART-XwFZukVv8E: + children: [] + id: CHART-XwFZukVv8E + meta: + chartId: 117 + height: 50 + sliceName: Waterfall + uuid: 97c77c60-0613-4066-aec7-a9c6a75ad8d8 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-ux6j1ePT8I + type: CHART + CHART-Z3IKOwHAnY: + children: [] + id: CHART-Z3IKOwHAnY + meta: + chartId: 112 + height: 50 + sliceName: Area + uuid: 946cccb5-2101-44f5-98f8-501789a333cd + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-LIWnqpnIk5 + type: CHART + CHART-aAhaxRYu_t: + children: [] + id: CHART-aAhaxRYu_t + meta: + chartId: 116 + height: 50 + sliceName: World Map + uuid: f0606234-1644-426f-8fc6-3eaf8e77fd58 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-ux6j1ePT8I + type: CHART + CHART-gfrGP3BD76: + children: [] + id: CHART-gfrGP3BD76 + meta: + chartId: 122 + height: 50 + sliceName: Funnel + uuid: 7b90545c-1aac-447d-9175-a49f508f699d + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-W7YILGiS0- + type: CHART + CHART-j2o9aZo4HY: + children: [] + id: CHART-j2o9aZo4HY + meta: + chartId: 114 + height: 50 + sliceName: Scatter Plot + uuid: 5b629855-f912-4e28-8444-56b9db83e5b3 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-Jq9auQfs6- + type: CHART + CHART-jC2_mEgWeL: + children: [] + id: CHART-jC2_mEgWeL + meta: + chartId: 123 + height: 50 + sliceName: Gauge + uuid: 57ccf0f1-d28a-4127-9581-7153c5a15b62 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-W7YILGiS0- + type: CHART + CHART-jzyy9Sa3pS: + children: [] + id: CHART-jzyy9Sa3pS + meta: + chartId: 110 + height: 50 + sliceName: Pivot Table + uuid: fcf2a0cf-0079-4f59-854f-d28297b07bf0 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-UxgGmS9gb3 + type: CHART + CHART-qZh51tuuRH: + children: [] + id: CHART-qZh51tuuRH + meta: + chartId: 126 + height: 50 + sliceName: Radar + uuid: 1be00870-89b8-4ba0-a451-1fe56ef89581 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-Jq9auQfs6- + type: CHART + CHART-t5t_tQe43g: + children: [] + id: CHART-t5t_tQe43g + meta: + chartId: 130 + height: 50 + sliceName: Histogram + uuid: 2a89c19d-d0d2-4f5e-9007-e0fb65440e80 + width: 4 + parents: + - ROOT_ID + - GRID_ID + - ROW-cUv-aKn4Yt + type: CHART + DASHBOARD_VERSION_KEY: v2 + GRID_ID: + children: + - ROW-LIWnqpnIk5 + - ROW-UvMsszSUji + - ROW-W7YILGiS0- + - ROW-cUv-aKn4Yt + - ROW-UxgGmS9gb3 + - ROW-Jq9auQfs6- + - ROW-3XARWMYOfz + - ROW-ux6j1ePT8I + id: GRID_ID + parents: + - ROOT_ID + type: GRID + HEADER_ID: + id: HEADER_ID + meta: + text: Featured charts + type: HEADER + ROOT_ID: + children: + - GRID_ID + id: ROOT_ID + type: ROOT + ROW-3XARWMYOfz: + children: + - CHART-3tEC_8e-uS + - CHART-A4qrvR24Ne + - CHART-DqaJJ8Fse6 + id: ROW-3XARWMYOfz + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-Jq9auQfs6-: + children: + - CHART-qZh51tuuRH + - CHART-j2o9aZo4HY + - CHART-33vjmwrGX1 + id: ROW-Jq9auQfs6- + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-LIWnqpnIk5: + children: + - CHART-Z3IKOwHAnY + - CHART-Es5rxmzfgG + - CHART-4iGGk_pxEN + id: ROW-LIWnqpnIk5 + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-UvMsszSUji: + children: + - CHART-2Z41H9ulKK + - CHART-FVeZR4VUUl + - CHART-GoiTIYEOOF + id: ROW-UvMsszSUji + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-UxgGmS9gb3: + children: + - CHART-4Zm6Q1VGY5 + - CHART-AFzv0kyWG_ + - CHART-jzyy9Sa3pS + id: ROW-UxgGmS9gb3 + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-W7YILGiS0-: + children: + - CHART-gfrGP3BD76 + - CHART-jC2_mEgWeL + - CHART-SjTqfJNmup + id: ROW-W7YILGiS0- + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-cUv-aKn4Yt: + children: + - CHART-CR0-igYucm + - CHART-t5t_tQe43g + - CHART-EpsTnvUMuW + id: ROW-cUv-aKn4Yt + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW + ROW-ux6j1ePT8I: + children: + - CHART-XwFZukVv8E + - CHART-KE7lk61Tbt + - CHART-aAhaxRYu_t + id: ROW-ux6j1ePT8I + meta: + background: BACKGROUND_TRANSPARENT + parents: + - ROOT_ID + - GRID_ID + type: ROW +metadata: + color_scheme: supersetAndPresetColors + refresh_frequency: 0 + expanded_slices: {} + label_colors: {} + timed_refresh_immune_slices: [] + cross_filters_enabled: true +version: 1.0.0 diff --git a/superset/examples/configs/datasets/examples/hierarchical_dataset.yaml b/superset/examples/configs/datasets/examples/hierarchical_dataset.yaml new file mode 100644 index 0000000000000..6f27506fb2091 --- /dev/null +++ b/superset/examples/configs/datasets/examples/hierarchical_dataset.yaml @@ -0,0 +1,116 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +table_name: hierarchical_dataset +main_dttm_col: null +description: null +default_endpoint: null +offset: 0 +cache_timeout: null +schema: public +sql: 'SELECT 1 as "id", null as "parent", ''USA'' as "name", 1 as "count" + + UNION SELECT 2, 1, ''CA'', 10 + + UNION SELECT 3, 1, ''NY'', 15 + + UNION SELECT 4, 1, ''TX'', 20 + + UNION SELECT 5, 1, ''FL'', 12 + + UNION SELECT 6, 2, ''Los Angeles'', 5 + + UNION SELECT 7, 2, ''San Francisco'', 8 + + UNION SELECT 8, 3, ''New York City'', 18 + + UNION SELECT 9, 3, ''Buffalo'', 3 + + UNION SELECT 10, 4, ''Houston'', 14 + + UNION SELECT 11, 4, ''Dallas'', 9 + + UNION SELECT 12, 5, ''Miami'', 6' +params: null +template_params: null +filter_select_enabled: true +fetch_values_predicate: null +extra: null +normalize_columns: false +always_filter_main_dttm: false +uuid: f710a997-c65e-4aa6-aaed-b7d6998565ae +metrics: + - metric_name: count + verbose_name: COUNT(*) + metric_type: count + expression: COUNT(*) + description: null + d3format: null + currency: null + extra: + warning_markdown: "" + warning_text: null +columns: + - column_name: parent + verbose_name: null + is_dttm: false + is_active: true + type: INTEGER + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: {} + - column_name: count + verbose_name: null + is_dttm: false + is_active: true + type: INTEGER + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: {} + - column_name: id + verbose_name: null + is_dttm: false + is_active: true + type: INTEGER + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: {} + - column_name: name + verbose_name: null + is_dttm: false + is_active: true + type: STRING + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: {} +version: 1.0.0 +database_uuid: a2dc77af-e654-49bb-b321-40f6b559a1ee diff --git a/superset/examples/configs/datasets/examples/wb_health_population.yaml b/superset/examples/configs/datasets/examples/wb_health_population.yaml new file mode 100644 index 0000000000000..ea89020b8ea27 --- /dev/null +++ b/superset/examples/configs/datasets/examples/wb_health_population.yaml @@ -0,0 +1,4317 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +table_name: wb_health_population +main_dttm_col: year +description: + "\nThis data was\ + \ downloaded from the\n[World's Health Organization's website](https://datacatalog.worldbank.org/dataset/health-nutrition-and-population-statistics)\n\ + \nHere's the script that was used to massage the data:\n\n DIR = \"\"\n df_country\ + \ = pd.read_csv(DIR + '/HNP_Country.csv')\n df_country.columns = ['country_code']\ + \ + list(df_country.columns[1:])\n df_country = df_country[['country_code', 'Region']]\n\ + \ df_country.columns = ['country_code', 'region']\n\n df = pd.read_csv(DIR\ + \ + '/HNP_Data.csv')\n del df['Unnamed: 60']\n df.columns = ['country_name',\ + \ 'country_code'] + list(df.columns[2:])\n ndf = df.merge(df_country, how='inner')\n\ + \n dims = ('country_name', 'country_code', 'region')\n vv = [str(i) for i\ + \ in range(1960, 2015)]\n mdf = pd.melt(ndf, id_vars=dims + ('Indicator Code',),\ + \ value_vars=vv)\n mdf['year'] = mdf.variable + '-01-01'\n dims = dims + ('year',)\n\ + \n pdf = mdf.pivot_table(values='value', columns='Indicator Code', index=dims)\n\ + \ pdf = pdf.reset_index()\n pdf.to_csv(DIR + '/countries.csv')\n pdf.to_json(DIR\ + \ + '/countries.json', orient='records')\n\nHere's the description of the metrics\ + \ available:\n\nSeries | Code Indicator Name\n--- | ---\nNY.GNP.PCAP.CD | GNI per\ + \ capita, Atlas method (current US$)\nSE.ADT.1524.LT.FM.ZS | Literacy rate, youth\ + \ (ages 15-24), gender parity index (GPI)\nSE.ADT.1524.LT.MA.ZS | Literacy rate,\ + \ youth male (% of males ages 15-24)\nSE.ADT.1524.LT.ZS | Literacy rate, youth total\ + \ (% of people ages 15-24)\nSE.ADT.LITR.FE.ZS | Literacy rate, adult female (% of\ + \ females ages 15 and above)\nSE.ADT.LITR.MA.ZS | Literacy rate, adult male (% of\ + \ males ages 15 and above)\nSE.ADT.LITR.ZS | Literacy rate, adult total (% of people\ + \ ages 15 and above)\nSE.ENR.ORPH | Ratio of school attendance of orphans to school\ + \ attendance of non-orphans ages 10-14\nSE.PRM.CMPT.FE.ZS | Primary completion rate,\ + \ female (% of relevant age group)\nSE.PRM.CMPT.MA.ZS | Primary completion rate,\ + \ male (% of relevant age group)\nSE.PRM.CMPT.ZS | Primary completion rate, total\ + \ (% of relevant age group)\nSE.PRM.ENRR | School enrollment, primary (% gross)\n\ + SE.PRM.ENRR.FE | School enrollment, primary, female (% gross)\nSE.PRM.ENRR.MA |\ + \ School enrollment, primary, male (% gross)\nSE.PRM.NENR | School enrollment, primary\ + \ (% net)\nSE.PRM.NENR.FE | School enrollment, primary, female (% net)\nSE.PRM.NENR.MA\ + \ | School enrollment, primary, male (% net)\nSE.SEC.ENRR | School enrollment, secondary\ + \ (% gross)\nSE.SEC.ENRR.FE | School enrollment, secondary, female (% gross)\nSE.SEC.ENRR.MA\ + \ | School enrollment, secondary, male (% gross)\nSE.SEC.NENR | School enrollment,\ + \ secondary (% net)\nSE.SEC.NENR.FE | School enrollment, secondary, female (% net)\n\ + SE.SEC.NENR.MA | School enrollment, secondary, male (% net)\nSE.TER.ENRR | School\ + \ enrollment, tertiary (% gross)\nSE.TER.ENRR.FE | School enrollment, tertiary,\ + \ female (% gross)\nSE.XPD.TOTL.GD.ZS | Government expenditure on education, total\ + \ (% of GDP)\nSH.ANM.CHLD.ZS | Prevalence of anemia among children (% of children\ + \ under 5)\nSH.ANM.NPRG.ZS | Prevalence of anemia among non-pregnant women (% of\ + \ women ages 15-49)\nSH.CON.1524.FE.ZS | Condom use, population ages 15-24, female\ + \ (% of females ages 15-24)\nSH.CON.1524.MA.ZS | Condom use, population ages 15-24,\ + \ male (% of males ages 15-24)\nSH.CON.AIDS.FE.ZS | Condom use at last high-risk\ + \ sex, adult female (% ages 15-49)\nSH.CON.AIDS.MA.ZS | Condom use at last high-risk\ + \ sex, adult male (% ages 15-49)\nSH.DTH.COMM.ZS | Cause of death, by communicable\ + \ diseases and maternal, prenatal and nutrition conditions (% of total)\nSH.DTH.IMRT\ + \ | Number of infant deaths\nSH.DTH.INJR.ZS | Cause of death, by injury (% of total)\n\ + SH.DTH.MORT | Number of under-five deaths\nSH.DTH.NCOM.ZS | Cause of death, by non-communicable\ + \ diseases (% of total)\nSH.DTH.NMRT | Number of neonatal deaths\nSH.DYN.AIDS |\ + \ Adults (ages 15+) living with HIV\nSH.DYN.AIDS.DH | AIDS estimated deaths (UNAIDS\ + \ estimates)\nSH.DYN.AIDS.FE.ZS | Women's share of population ages 15+ living with\ + \ HIV (%)\nSH.DYN.AIDS.ZS | Prevalence of HIV, total (% of population ages 15-49)\n\ + SH.DYN.MORT | Mortality rate, under-5 (per 1,000 live births)\nSH.DYN.MORT.FE |\ + \ Mortality rate, under-5, female (per 1,000 live births)\nSH.DYN.MORT.MA | Mortality\ + \ rate, under-5, male (per 1,000 live births)\nSH.DYN.NMRT | Mortality rate, neonatal\ + \ (per 1,000 live births)\nSH.FPL.SATI.ZS | Met need for contraception (% of married\ + \ women ages 15-49)\nSH.H2O.SAFE.RU.ZS | Improved water source, rural (% of rural\ + \ population with access)\nSH.H2O.SAFE.UR.ZS | Improved water source, urban (% of\ + \ urban population with access)\nSH.H2O.SAFE.ZS | Improved water source (% of population\ + \ with access)\nSH.HIV.0014 | Children (0-14) living with HIV\nSH.HIV.1524.FE.ZS\ + \ | Prevalence of HIV, female (% ages 15-24)\nSH.HIV.1524.KW.FE.ZS | Comprehensive\ + \ correct knowledge of HIV/AIDS, ages 15-24, female (2 prevent ways and reject 3\ + \ misconceptions)\nSH.HIV.1524.KW.MA.ZS | Comprehensive correct knowledge of HIV/AIDS,\ + \ ages 15-24, male (2 prevent ways and reject 3 misconceptions)\nSH.HIV.1524.MA.ZS\ + \ | Prevalence of HIV, male (% ages 15-24)\nSH.HIV.ARTC.ZS | Antiretroviral therapy\ + \ coverage (% of people living with HIV)\nSH.HIV.KNOW.FE.ZS | % of females ages\ + \ 15-49 having comprehensive correct knowledge about HIV (2 prevent ways and reject\ + \ 3 misconceptions)\nSH.HIV.KNOW.MA.ZS | % of males ages 15-49 having comprehensive\ + \ correct knowledge about HIV (2 prevent ways and reject 3 misconceptions)\nSH.HIV.ORPH\ + \ | Children orphaned by HIV/AIDS\nSH.HIV.TOTL | Adults (ages 15+) and children\ + \ (0-14 years) living with HIV\nSH.IMM.HEPB | Immunization, HepB3 (% of one-year-old\ + \ children)\nSH.IMM.HIB3 | Immunization, Hib3 (% of children ages 12-23 months)\n\ + SH.IMM.IBCG | Immunization, BCG (% of one-year-old children)\nSH.IMM.IDPT | Immunization,\ + \ DPT (% of children ages 12-23 months)\nSH.IMM.MEAS | Immunization, measles (%\ + \ of children ages 12-23 months)\nSH.IMM.POL3 | Immunization, Pol3 (% of one-year-old\ + \ children)\nSH.MED.BEDS.ZS | Hospital beds (per 1,000 people)\nSH.MED.CMHW.P3 |\ + \ Community health workers (per 1,000 people)\nSH.MED.NUMW.P3 | Nurses and midwives\ + \ (per 1,000 people)\nSH.MED.PHYS.ZS | Physicians (per 1,000 people)\nSH.MLR.NETS.ZS\ + \ | Use of insecticide-treated bed nets (% of under-5 population)\nSH.MLR.PREG.ZS\ + \ | Use of any antimalarial drug (% of pregnant women)\nSH.MLR.SPF2.ZS | Use of\ + \ Intermittent Preventive Treatment of malaria, 2+ doses of SP/Fansidar (% of pregnant\ + \ women)\nSH.MLR.TRET.ZS | Children with fever receiving antimalarial drugs (% of\ + \ children under age 5 with fever)\nSH.MMR.DTHS | Number of maternal deaths\nSH.MMR.LEVE\ + \ | Number of weeks of maternity leave\nSH.MMR.RISK | Lifetime risk of maternal\ + \ death (1 in: rate varies by country)\nSH.MMR.RISK.ZS | Lifetime risk of maternal\ + \ death (%)\nSH.MMR.WAGE.ZS | Maternal leave benefits (% of wages paid in covered\ + \ period)\nSH.PRG.ANEM | Prevalence of anemia among pregnant women (%)\nSH.PRG.ARTC.ZS\ + \ | Antiretroviral therapy coverage (% of pregnant women living with HIV)\nSH.PRG.SYPH.ZS\ + \ | Prevalence of syphilis (% of women attending antenatal care)\nSH.PRV.SMOK.FE\ + \ | Smoking prevalence, females (% of adults)\nSH.PRV.SMOK.MA | Smoking prevalence,\ + \ males (% of adults)\nSH.STA.ACSN | Improved sanitation facilities (% of population\ + \ with access)\nSH.STA.ACSN.RU | Improved sanitation facilities, rural (% of rural\ + \ population with access)\nSH.STA.ACSN.UR | Improved sanitation facilities, urban\ + \ (% of urban population with access)\nSH.STA.ANV4.ZS | Pregnant women receiving\ + \ prenatal care of at least four visits (% of pregnant women)\nSH.STA.ANVC.ZS |\ + \ Pregnant women receiving prenatal care (%)\nSH.STA.ARIC.ZS | ARI treatment (%\ + \ of children under 5 taken to a health provider)\nSH.STA.BFED.ZS | Exclusive breastfeeding\ + \ (% of children under 6 months)\nSH.STA.BRTC.ZS | Births attended by skilled health\ + \ staff (% of total)\nSH.STA.BRTW.ZS | Low-birthweight babies (% of births)\nSH.STA.DIAB.ZS\ + \ | Diabetes prevalence (% of population ages 20 to 79)\nSH.STA.IYCF.ZS | Infant\ + \ and young child feeding practices, all 3 IYCF (% children ages 6-23 months)\n\ + SH.STA.MALN.FE.ZS | Prevalence of underweight, weight for age, female (% of children\ + \ under 5)\nSH.STA.MALN.MA.ZS | Prevalence of underweight, weight for age, male\ + \ (% of children under 5)\nSH.STA.MALN.ZS | Prevalence of underweight, weight for\ + \ age (% of children under 5)\nSH.STA.MALR | Malaria cases reported\nSH.STA.MMRT\ + \ | Maternal mortality ratio (modeled estimate, per 100,000 live births)\nSH.STA.MMRT.NE\ + \ | Maternal mortality ratio (national estimate, per 100,000 live births)\nSH.STA.ORCF.ZS\ + \ | Diarrhea treatment (% of children under 5 receiving oral rehydration and continued\ + \ feeding)\nSH.STA.ORTH | Diarrhea treatment (% of children under 5 who received\ + \ ORS packet)\nSH.STA.OW15.FE.ZS | Prevalence of overweight, female (% of female\ + \ adults)\nSH.STA.OW15.MA.ZS | Prevalence of overweight, male (% of male adults)\n\ + SH.STA.OW15.ZS | Prevalence of overweight (% of adults)\nSH.STA.OWGH.FE.ZS | Prevalence\ + \ of overweight, weight for height, female (% of children under 5)\nSH.STA.OWGH.MA.ZS\ + \ | Prevalence of overweight, weight for height, male (% of children under 5)\n\ + SH.STA.OWGH.ZS | Prevalence of overweight, weight for height (% of children under\ + \ 5)\nSH.STA.PNVC.ZS | Postnatal care coverage (% mothers)\nSH.STA.STNT.FE.ZS |\ + \ Prevalence of stunting, height for age, female (% of children under 5)\nSH.STA.STNT.MA.ZS\ + \ | Prevalence of stunting, height for age, male (% of children under 5)\nSH.STA.STNT.ZS\ + \ | Prevalence of stunting, height for age (% of children under 5)\nSH.STA.WAST.FE.ZS\ + \ | Prevalence of wasting, weight for height, female (% of children under 5)\nSH.STA.WAST.MA.ZS\ + \ | Prevalence of wasting, weight for height, male (% of children under 5)\nSH.STA.WAST.ZS\ + \ | Prevalence of wasting, weight for height (% of children under 5)\nSH.SVR.WAST.FE.ZS\ + \ | Prevalence of severe wasting, weight for height, female (% of children under\ + \ 5)\nSH.SVR.WAST.MA.ZS | Prevalence of severe wasting, weight for height, male\ + \ (% of children under 5)\nSH.SVR.WAST.ZS | Prevalence of severe wasting, weight\ + \ for height (% of children under 5)\nSH.TBS.CURE.ZS | Tuberculosis treatment success\ + \ rate (% of new cases)\nSH.TBS.DTEC.ZS | Tuberculosis case detection rate (%, all\ + \ forms)\nSH.TBS.INCD | Incidence of tuberculosis (per 100,000 people)\nSH.TBS.MORT\ + \ | Tuberculosis death rate (per 100,000 people)\nSH.TBS.PREV | Prevalence of tuberculosis\ + \ (per 100,000 population)\nSH.VAC.TTNS.ZS | Newborns protected against tetanus\ + \ (%)\nSH.XPD.EXTR.ZS | External resources for health (% of total expenditure on\ + \ health)\nSH.XPD.OOPC.TO.ZS | Out-of-pocket health expenditure (% of total expenditure\ + \ on health)\nSH.XPD.OOPC.ZS | Out-of-pocket health expenditure (% of private expenditure\ + \ on health)\nSH.XPD.PCAP | Health expenditure per capita (current US$)\nSH.XPD.PCAP.PP.KD\ + \ | Health expenditure per capita, PPP (constant 2011 international $)\nSH.XPD.PRIV\ + \ | Health expenditure, private (% of total health expenditure)\nSH.XPD.PRIV.ZS\ + \ | Health expenditure, private (% of GDP)\nSH.XPD.PUBL | Health expenditure, public\ + \ (% of total health expenditure)\nSH.XPD.PUBL.GX.ZS | Health expenditure, public\ + \ (% of government expenditure)\nSH.XPD.PUBL.ZS | Health expenditure, public (%\ + \ of GDP)\nSH.XPD.TOTL.CD | Health expenditure, total (current US$)\nSH.XPD.TOTL.ZS\ + \ | Health expenditure, total (% of GDP)\nSI.POV.NAHC | Poverty headcount ratio\ + \ at national poverty lines (% of population)\nSI.POV.RUHC | Rural poverty headcount\ + \ ratio at national poverty lines (% of rural population)\nSI.POV.URHC | Urban poverty\ + \ headcount ratio at national poverty lines (% of urban population)\nSL.EMP.INSV.FE.ZS\ + \ | Share of women in wage employment in the nonagricultural sector (% of total\ + \ nonagricultural employment)\nSL.TLF.TOTL.FE.ZS | Labor force, female (% of total\ + \ labor force)\nSL.TLF.TOTL.IN | Labor force, total\nSL.UEM.TOTL.FE.ZS | Unemployment,\ + \ female (% of female labor force) (modeled ILO estimate)\nSL.UEM.TOTL.MA.ZS | Unemployment,\ + \ male (% of male labor force) (modeled ILO estimate)\nSL.UEM.TOTL.ZS | Unemployment,\ + \ total (% of total labor force) (modeled ILO estimate)\nSM.POP.NETM | Net migration\n\ + SN.ITK.DEFC | Number of people who are undernourished\nSN.ITK.DEFC.ZS | Prevalence\ + \ of undernourishment (% of population)\nSN.ITK.SALT.ZS | Consumption of iodized\ + \ salt (% of households)\nSN.ITK.VITA.ZS | Vitamin A supplementation coverage rate\ + \ (% of children ages 6-59 months)\nSP.ADO.TFRT | Adolescent fertility rate (births\ + \ per 1,000 women ages 15-19)\nSP.DYN.AMRT.FE | Mortality rate, adult, female (per\ + \ 1,000 female adults)\nSP.DYN.AMRT.MA | Mortality rate, adult, male (per 1,000\ + \ male adults)\nSP.DYN.CBRT.IN | Birth rate, crude (per 1,000 people)\nSP.DYN.CDRT.IN\ + \ | Death rate, crude (per 1,000 people)\nSP.DYN.CONU.ZS | Contraceptive prevalence\ + \ (% of women ages 15-49)\nSP.DYN.IMRT.FE.IN | Mortality rate, infant, female (per\ + \ 1,000 live births)\nSP.DYN.IMRT.IN | Mortality rate, infant (per 1,000 live births)\n\ + SP.DYN.IMRT.MA.IN | Mortality rate, infant, male (per 1,000 live births)\nSP.DYN.LE00.FE.IN\ + \ | Life expectancy at birth, female (years)\nSP.DYN.LE00.IN | Life expectancy at\ + \ birth, total (years)\nSP.DYN.LE00.MA.IN | Life expectancy at birth, male (years)\n\ + SP.DYN.SMAM.FE | Mean age at first marriage, female\nSP.DYN.SMAM.MA | Mean age at\ + \ first marriage, male\nSP.DYN.TFRT.IN | Fertility rate, total (births per woman)\n\ + SP.DYN.TO65.FE.ZS | Survival to age 65, female (% of cohort)\nSP.DYN.TO65.MA.ZS\ + \ | Survival to age 65, male (% of cohort)\nSP.DYN.WFRT | Wanted fertility rate\ + \ (births per woman)\nSP.HOU.FEMA.ZS | Female headed households (% of households\ + \ with a female head)\nSP.MTR.1519.ZS | Teenage mothers (% of women ages 15-19 who\ + \ have had children or are currently pregnant)\nSP.POP.0004.FE | Population ages\ + \ 0-4, female\nSP.POP.0004.FE.5Y | Population ages 0-4, female (% of female population)\n\ + SP.POP.0004.MA | Population ages 0-4, male\nSP.POP.0004.MA.5Y | Population ages\ + \ 0-4, male (% of male population)\nSP.POP.0014.FE.ZS | Population ages 0-14, female\ + \ (% of total)\nSP.POP.0014.MA.ZS | Population ages 0-14, male (% of total)\nSP.POP.0014.TO\ + \ | Population ages 0-14, total\nSP.POP.0014.TO.ZS | Population ages 0-14 (% of\ + \ total)\nSP.POP.0509.FE | Population ages 5-9, female\nSP.POP.0509.FE.5Y | Population\ + \ ages 5-9, female (% of female population)\nSP.POP.0509.MA | Population ages 5-9,\ + \ male\nSP.POP.0509.MA.5Y | Population ages 5-9, male (% of male population)\nSP.POP.1014.FE\ + \ | Population ages 10-14, female\nSP.POP.1014.FE.5Y | Population ages 10-14, female\ + \ (% of female population)\nSP.POP.1014.MA | Population ages 10-14, male\nSP.POP.1014.MA.5Y\ + \ | Population ages 10-14, male (% of male population)\nSP.POP.1519.FE | Population\ + \ ages 15-19, female\nSP.POP.1519.FE.5Y | Population ages 15-19, female (% of female\ + \ population)\nSP.POP.1519.MA | Population ages 15-19, male\nSP.POP.1519.MA.5Y |\ + \ Population ages 15-19, male (% of male population)\nSP.POP.1564.FE.ZS | Population\ + \ ages 15-64, female (% of total)\nSP.POP.1564.MA.ZS | Population ages 15-64, male\ + \ (% of total)\nSP.POP.1564.TO | Population ages 15-64, total\nSP.POP.1564.TO.ZS\ + \ | Population ages 15-64 (% of total)\nSP.POP.2024.FE | Population ages 20-24,\ + \ female\nSP.POP.2024.FE.5Y | Population ages 20-24, female (% of female population)\n\ + SP.POP.2024.MA | Population ages 20-24, male\nSP.POP.2024.MA.5Y | Population ages\ + \ 20-24, male (% of male population)\nSP.POP.2529.FE | Population ages 25-29, female\n\ + SP.POP.2529.FE.5Y | Population ages 25-29, female (% of female population)\nSP.POP.2529.MA\ + \ | Population ages 25-29, male\nSP.POP.2529.MA.5Y | Population ages 25-29, male\ + \ (% of male population)\nSP.POP.3034.FE | Population ages 30-34, female\nSP.POP.3034.FE.5Y\ + \ | Population ages 30-34, female (% of female population)\nSP.POP.3034.MA | Population\ + \ ages 30-34, male\nSP.POP.3034.MA.5Y | Population ages 30-34, male (% of male population)\n\ + SP.POP.3539.FE | Population ages 35-39, female\nSP.POP.3539.FE.5Y | Population ages\ + \ 35-39, female (% of female population)\nSP.POP.3539.MA | Population ages 35-39,\ + \ male\nSP.POP.3539.MA.5Y | Population ages 35-39, male (% of male population)\n\ + SP.POP.4044.FE | Population ages 40-44, female\nSP.POP.4044.FE.5Y | Population ages\ + \ 40-44, female (% of female population)\nSP.POP.4044.MA | Population ages 40-44,\ + \ male\nSP.POP.4044.MA.5Y | Population ages 40-44, male (% of male population)\n\ + SP.POP.4549.FE | Population ages 45-49, female\nSP.POP.4549.FE.5Y | Population ages\ + \ 45-49, female (% of female population)\nSP.POP.4549.MA | Population ages 45-49,\ + \ male\nSP.POP.4549.MA.5Y | Population ages 45-49, male (% of male population)\n\ + SP.POP.5054.FE | Population ages 50-54, female\nSP.POP.5054.FE.5Y | Population ages\ + \ 50-54, female (% of female population)\nSP.POP.5054.MA | Population ages 50-54,\ + \ male\nSP.POP.5054.MA.5Y | Population ages 50-54, male (% of male population)\n\ + SP.POP.5559.FE | Population ages 55-59, female\nSP.POP.5559.FE.5Y | Population ages\ + \ 55-59, female (% of female population)\nSP.POP.5559.MA | Population ages 55-59,\ + \ male\nSP.POP.5559.MA.5Y | Population ages 55-59, male (% of male population)\n\ + SP.POP.6064.FE | Population ages 60-64, female\nSP.POP.6064.FE.5Y | Population ages\ + \ 60-64, female (% of female population)\nSP.POP.6064.MA | Population ages 60-64,\ + \ male\nSP.POP.6064.MA.5Y | Population ages 60-64, male (% of male population)\n\ + SP.POP.6569.FE | Population ages 65-69, female\nSP.POP.6569.FE.5Y | Population ages\ + \ 65-69, female (% of female population)\nSP.POP.6569.MA | Population ages 65-69,\ + \ male\nSP.POP.6569.MA.5Y | Population ages 65-69, male (% of male population)\n\ + SP.POP.65UP.FE.ZS | Population ages 65 and above, female (% of total)\nSP.POP.65UP.MA.ZS\ + \ | Population ages 65 and above, male (% of total)\nSP.POP.65UP.TO | Population\ + \ ages 65 and above, total\nSP.POP.65UP.TO.ZS | Population ages 65 and above (%\ + \ of total)\nSP.POP.7074.FE | Population ages 70-74, female\nSP.POP.7074.FE.5Y |\ + \ Population ages 70-74, female (% of female population)\nSP.POP.7074.MA | Population\ + \ ages 70-74, male\nSP.POP.7074.MA.5Y | Population ages 70-74, male (% of male population)\n\ + SP.POP.7579.FE | Population ages 75-79, female\nSP.POP.7579.FE.5Y | Population ages\ + \ 75-79, female (% of female population)\nSP.POP.7579.MA | Population ages 75-79,\ + \ male\nSP.POP.7579.MA.5Y | Population ages 75-79, male (% of male population)\n\ + SP.POP.80UP.FE | Population ages 80 and above, female\nSP.POP.80UP.FE.5Y | Population\ + \ ages 80 and above, female (% of female population)\nSP.POP.80UP.MA | Population\ + \ ages 80 and above, male\nSP.POP.80UP.MA.5Y | Population ages 80 and above, male\ + \ (% of male population)\nSP.POP.AG00.FE.IN | Age population, age 0, female, interpolated\n\ + SP.POP.AG00.MA.IN | Age population, age 0, male, interpolated\nSP.POP.AG01.FE.IN\ + \ | Age population, age 01, female, interpolated\nSP.POP.AG01.MA.IN | Age population,\ + \ age 01, male, interpolated\nSP.POP.AG02.FE.IN | Age population, age 02, female,\ + \ interpolated\nSP.POP.AG02.MA.IN | Age population, age 02, male, interpolated\n\ + SP.POP.AG03.FE.IN | Age population, age 03, female, interpolated\nSP.POP.AG03.MA.IN\ + \ | Age population, age 03, male, interpolated\nSP.POP.AG04.FE.IN | Age population,\ + \ age 04, female, interpolated\nSP.POP.AG04.MA.IN | Age population, age 04, male,\ + \ interpolated\nSP.POP.AG05.FE.IN | Age population, age 05, female, interpolated\n\ + SP.POP.AG05.MA.IN | Age population, age 05, male, interpolated\nSP.POP.AG06.FE.IN\ + \ | Age population, age 06, female, interpolated\nSP.POP.AG06.MA.IN | Age population,\ + \ age 06, male, interpolated\nSP.POP.AG07.FE.IN | Age population, age 07, female,\ + \ interpolated\nSP.POP.AG07.MA.IN | Age population, age 07, male, interpolated\n\ + SP.POP.AG08.FE.IN | Age population, age 08, female, interpolated\nSP.POP.AG08.MA.IN\ + \ | Age population, age 08, male, interpolated\nSP.POP.AG09.FE.IN | Age population,\ + \ age 09, female, interpolated\nSP.POP.AG09.MA.IN | Age population, age 09, male,\ + \ interpolated\nSP.POP.AG10.FE.IN | Age population, age 10, female, interpolated\n\ + SP.POP.AG10.MA.IN | Age population, age 10, male\nSP.POP.AG11.FE.IN | Age population,\ + \ age 11, female, interpolated\nSP.POP.AG11.MA.IN | Age population, age 11, male\n\ + SP.POP.AG12.FE.IN | Age population, age 12, female, interpolated\nSP.POP.AG12.MA.IN\ + \ | Age population, age 12, male\nSP.POP.AG13.FE.IN | Age population, age 13, female,\ + \ interpolated\nSP.POP.AG13.MA.IN | Age population, age 13, male\nSP.POP.AG14.FE.IN\ + \ | Age population, age 14, female, interpolated\nSP.POP.AG14.MA.IN | Age population,\ + \ age 14, male\nSP.POP.AG15.FE.IN | Age population, age 15, female, interpolated\n\ + SP.POP.AG15.MA.IN | Age population, age 15, male, interpolated\nSP.POP.AG16.FE.IN\ + \ | Age population, age 16, female, interpolated\nSP.POP.AG16.MA.IN | Age population,\ + \ age 16, male, interpolated\nSP.POP.AG17.FE.IN | Age population, age 17, female,\ + \ interpolated\nSP.POP.AG17.MA.IN | Age population, age 17, male, interpolated\n\ + SP.POP.AG18.FE.IN | Age population, age 18, female, interpolated\nSP.POP.AG18.MA.IN\ + \ | Age population, age 18, male, interpolated\nSP.POP.AG19.FE.IN | Age population,\ + \ age 19, female, interpolated\nSP.POP.AG19.MA.IN | Age population, age 19, male,\ + \ interpolated\nSP.POP.AG20.FE.IN | Age population, age 20, female, interpolated\n\ + SP.POP.AG20.MA.IN | Age population, age 20, male, interpolated\nSP.POP.AG21.FE.IN\ + \ | Age population, age 21, female, interpolated\nSP.POP.AG21.MA.IN | Age population,\ + \ age 21, male, interpolated\nSP.POP.AG22.FE.IN | Age population, age 22, female,\ + \ interpolated\nSP.POP.AG22.MA.IN | Age population, age 22, male, interpolated\n\ + SP.POP.AG23.FE.IN | Age population, age 23, female, interpolated\nSP.POP.AG23.MA.IN\ + \ | Age population, age 23, male, interpolated\nSP.POP.AG24.FE.IN | Age population,\ + \ age 24, female, interpolated\nSP.POP.AG24.MA.IN | Age population, age 24, male,\ + \ interpolated\nSP.POP.AG25.FE.IN | Age population, age 25, female, interpolated\n\ + SP.POP.AG25.MA.IN | Age population, age 25, male, interpolated\nSP.POP.BRTH.MF |\ + \ Sex ratio at birth (male births per female births)\nSP.POP.DPND | Age dependency\ + \ ratio (% of working-age population)\nSP.POP.DPND.OL | Age dependency ratio, old\ + \ (% of working-age population)\nSP.POP.DPND.YG | Age dependency ratio, young (%\ + \ of working-age population)\nSP.POP.GROW | Population growth (annual %)\nSP.POP.TOTL\ + \ | Population, total\nSP.POP.TOTL.FE.IN | Population, female\nSP.POP.TOTL.FE.ZS\ + \ | Population, female (% of total)\nSP.POP.TOTL.MA.IN | Population, male\nSP.POP.TOTL.MA.ZS\ + \ | Population, male (% of total)\nSP.REG.BRTH.RU.ZS | Completeness of birth registration,\ + \ rural (%)\nSP.REG.BRTH.UR.ZS | Completeness of birth registration, urban (%)\n\ + SP.REG.BRTH.ZS | Completeness of birth registration (%)\nSP.REG.DTHS.ZS | Completeness\ + \ of death registration with cause-of-death information (%)\nSP.RUR.TOTL | Rural\ + \ population\nSP.RUR.TOTL.ZG | Rural population growth (annual %)\nSP.RUR.TOTL.ZS\ + \ | Rural population (% of total population)\nSP.URB.GROW | Urban population growth\ + \ (annual %)\nSP.URB.TOTL | Urban population\nSP.URB.TOTL.IN.ZS | Urban population\ + \ (% of total)\nSP.UWT.TFRT | Unmet need for contraception (% of married women ages\ + \ 15-49)\n" +default_endpoint: null +offset: 0 +cache_timeout: null +schema: public +sql: null +params: null +template_params: null +filter_select_enabled: true +fetch_values_predicate: null +extra: null +normalize_columns: false +always_filter_main_dttm: false +uuid: 3cee7b7f-0009-4d9d-8de4-1da4cad4569e +metrics: + - metric_name: sum__SP_DYN_LE00_IN + verbose_name: null + metric_type: null + expression: sum("SP_DYN_LE00_IN") + description: null + d3format: null + currency: null + extra: null + warning_text: null + - metric_name: sum__SH_DYN_AIDS + verbose_name: null + metric_type: null + expression: sum("SH_DYN_AIDS") + description: null + d3format: null + currency: null + extra: null + warning_text: null + - metric_name: sum__SP_POP_TOTL + verbose_name: null + metric_type: null + expression: sum("SP_POP_TOTL") + description: null + d3format: null + currency: null + extra: null + warning_text: null + - metric_name: sum__SP_RUR_TOTL_ZS + verbose_name: null + metric_type: null + expression: sum("SP_RUR_TOTL_ZS") + description: null + d3format: null + currency: null + extra: null + warning_text: null + - metric_name: sum__SP_RUR_TOTL + verbose_name: null + metric_type: null + expression: sum("SP_RUR_TOTL") + description: null + d3format: null + currency: null + extra: null + warning_text: null + - metric_name: count + verbose_name: COUNT(*) + metric_type: count + expression: COUNT(*) + description: null + d3format: null + currency: null + extra: null + warning_text: null +columns: + - column_name: year + verbose_name: null + is_dttm: true + is_active: true + type: TIMESTAMP WITHOUT TIME ZONE + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0004_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0004_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0004_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0004_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0014_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0014_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_0014 + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0014_TO_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0014_TO + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0509_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0509_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0509_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_0509_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG00_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_LE00_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG00_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_LE00_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_LE00_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1014_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1014_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1014_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1014_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG01_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG10_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG01_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG10_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2024_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2024_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2024_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2024_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG02_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG20_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG02_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG20_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3034_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3034_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3034_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3034_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG03_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG03_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4044_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4044_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4044_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4044_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5054_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5054_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5054_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5054_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6064_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6064_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7074_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7074_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6064_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6064_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7074_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7074_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG04_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG04_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_80UP_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_80UP_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG05_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG05_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG06_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG06_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG07_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG07_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG08_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG08_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_80UP_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_80UP_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG09_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG09_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1519_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1519_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1519_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1519_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_MTR_1519_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG11_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG11_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ADT_1524_LT_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_CON_1524_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ADT_1524_LT_FM_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ADT_1524_LT_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_1524_KW_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_1524_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_CON_1524_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_1524_KW_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_1524_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG12_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG21_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG12_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG21_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG13_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG13_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1564_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1564_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1564_TO_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_1564_TO + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG14_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG14_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG15_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_OW15_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG15_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_OW15_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_OW15_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG16_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG16_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG17_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG17_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG18_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG18_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG19_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG19_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2529_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2529_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2529_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_2529_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG22_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG22_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG23_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG23_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG24_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG24_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG25_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_AG25_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_H2O_SAFE_RU_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_H2O_SAFE_UR_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_H2O_SAFE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MLR_SPF2_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3539_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3539_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3539_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_3539_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_IMM_HIB3 + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MED_CMHW_P3 + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MED_NUMW_P3 + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_IMM_POL3 + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4549_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4549_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4549_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_4549_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ANV4_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5559_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5559_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5559_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_5559_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6569_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6569_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7579_MA_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7579_FE_5Y + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6569_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_6569_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_TO65_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_65UP_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_TO65_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_65UP_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_65UP_TO_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_65UP_TO + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7579_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_7579_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_MALN_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_WAST_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_DIAB_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_CON_AIDS_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ARIC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ACSN_RU + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ACSN_UR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ANVC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ACSN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ADT_LITR_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_SMAM_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_AMRT_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_MALN_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_WAST_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_OWGH_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_MALN_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_MALR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_STNT_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_SVR_WAST_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_WAST_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_BRTC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_BFED_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_BRTW_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: NY_GNP_PCAP_CD + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PCAP_PP_KD + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_CON_AIDS_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_ANM_CHLD_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PCAP + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_SEC_NENR_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_SEC_ENRR_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_CMPT_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_IYCF_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ORCF_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_PRG_ARTC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_ARTC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SI_POV_NAHC + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_PNVC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_VAC_TTNS_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_AIDS_DH + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_AIDS_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_AIDS_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_AIDS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ADT_LITR_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_SMAM_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_AMRT_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ADT_LITR_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_ADO_TFRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_MORT_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_IMRT_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_NENR_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_ENRR_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_OWGH_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_HOU_FEMA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_STNT_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_SVR_WAST_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MMR_WAGE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_PRG_ANEM + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_IMM_MEAS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_MMRT_NE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SL_UEM_TOTL_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_FPL_SATI_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_OWGH_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_ANM_NPRG_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_KNOW_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_ORTH + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_PRV_SMOK_MA + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_MMRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_STA_STNT_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_SVR_WAST_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SN_ITK_VITA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SN_ITK_SALT_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_TOTL_MA_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_TOTL_MA_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_TBS_DTEC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_TBS_INCD + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_CBRT_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_TBS_CURE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_IMM_IBCG + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MED_BEDS_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PUBL_GX_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PUBL_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PUBL + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_REG_BRTH_RU_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_REG_BRTH_UR_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_REG_BRTH_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_IMM_HEPB + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_TBS_PREV + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_BRTH_MF + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_URB_GROW + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_TBS_MORT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_URB_TOTL_IN_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_URB_TOTL + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_TOTL_CD + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_CDRT_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SN_ITK_DEFC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SN_ITK_DEFC + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DTH_COMM_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DTH_NCOM_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_OOPC_TO_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_OOPC_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_CONU_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_SEC_NENR_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_SEC_ENRR_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_SEC_NENR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_SEC_ENRR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_CMPT_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_CMPT_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SI_POV_RUHC + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SI_POV_URHC + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_XPD_TOTL_GD_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_DPND_YG + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_DPND_OL + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_DPND + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_MORT_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_IMRT_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_REG_DTHS_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MED_PHYS_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_EXTR_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_TFRT_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_WFRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DTH_INJR_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DTH_IMRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MMR_DTHS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DTH_NMRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DTH_MORT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_IMM_IDPT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PRIV_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_PRIV + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_XPD_TOTL_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_NMRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_DYN_MORT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_DYN_IMRT_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_TER_ENRR_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_NENR_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_ENRR_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_TER_ENRR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SL_EMP_INSV_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SL_UEM_TOTL_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MMR_LEVE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_ENR_ORPH + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_NENR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SE_PRM_ENRR + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SL_TLF_TOTL_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_KNOW_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_PRV_SMOK_FE + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_TOTL_FE_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_TOTL_FE_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MLR_PREG_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MLR_NETS_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MLR_TRET_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SL_UEM_TOTL_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SM_POP_NETM + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SL_TLF_TOTL_IN + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_UWT_TFRT + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_PRG_SYPH_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_RUR_TOTL_ZG + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_GROW + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_ORPH + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_HIV_TOTL + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MMR_RISK_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SH_MMR_RISK + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_POP_TOTL + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_RUR_TOTL_ZS + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: SP_RUR_TOTL + verbose_name: null + is_dttm: false + is_active: true + type: DOUBLE PRECISION + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: country_name + verbose_name: null + is_dttm: false + is_active: true + type: VARCHAR(255) + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: region + verbose_name: null + is_dttm: false + is_active: true + type: VARCHAR(255) + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null + - column_name: country_code + verbose_name: null + is_dttm: false + is_active: true + type: VARCHAR(3) + advanced_data_type: null + groupby: true + filterable: true + expression: null + description: null + python_date_format: null + extra: null +version: 1.0.0 +database_uuid: a2dc77af-e654-49bb-b321-40f6b559a1ee