Statistical query group and sort

View on GitHubSample viewer app

Query a feature table for statistics, grouping and sorting by different fields.

Image of statistical query group and sort

Use case

You can use statistical queries, grouping and sorting to process large amounts of data saved in feature tables. This is helpful for identifying trends and relationships within the data, which can be used to support further interpretations and decisions. For example, a health agency can use information on medical conditions occurring throughout a country to identify at-risk areas or demographics, and decide on further action and preventive measures.

How to use the sample

The sample will start with some default options selected. You can immediately click the "Get Statistics" button to see the results for these options. There are several ways to customize your queries:

  • You can add statistic definitions to the top-left table using the combo boxes and "Add" button. Select a table row and click "Remove" to remove a definition.

  • To change the Group-by fields, check the box by the field you want to group by in the bottom-left list view.

  • To change the Order-by fields, select a Group-by field (it must be checked) and click the ">>" button to add it to the Order-by table. To remove a field from the Order-by table, select it and click the "<<" button. To change the sort order of the Order-by field, the cells of the "Sort Order" column are combo-boxes that may be either ASCENDING or DESCENDING.

How it works

  1. Create a ServiceFeatureTable using the URL of a feature service and load the table.
  2. Get the feature tables field names list with featureTable.getFields().
  3. Create StatisticDefinitions specifying the field to compute statistics on and the StatisticType to compute.
  4. Create StatisticsQueryParameters passing in the list of statistic definitions.
  5. To have the results grouped by fields, add the field names to the query parameters' groupByFieldNames collection.
  6. To have the results ordered by fields, create OrderBys, specifying the field name and SortOrder. Pass these OrderBys to the parameters' orderByFields collection.
  7. To execute the query, call featureTable.queryStatisticsAsync(queryParameters).
  8. Get the StatisticQueryResult. From this, you can get an iterator of StatisticRecords to loop through and display.

About the data

This sample uses a Diabetes, Obesity, and Inactivity by US County feature layer hosted on ArcGIS Online.

Relevant API

  • Field
  • QueryParameters.OrderBy
  • QueryParameters
  • ServiceFeatureTable
  • StatisticDefinition
  • StatisticRecord
  • StatisticsQueryParameters
  • StatisticsQueryResult
  • StatisticType

Tags

correlation, data, fields, filter, group, sort, statistics, table

Sample Code

GroupField.javaGroupField.javaOrderByField.javaStatisticalQueryGroupAndSortController.javaStatisticalQueryGroupAndSortSample.java
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.esri.samples.statistical_query_group_and_sort;

import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.property.SimpleStringProperty;

/**
 * Convenience bean class for representing a group-by field. The grouping property can be bound to a CheckBoxListCell
 * to choose whether the field should be grouped by with a CheckBox.
 */
class GroupField {

  private final SimpleStringProperty fieldName;
  private final SimpleBooleanProperty grouping;

  GroupField(String fieldName, Boolean grouping) {
    this.fieldName = new SimpleStringProperty(fieldName);
    this.grouping = new SimpleBooleanProperty(grouping);
  }

  String getFieldName() {
    return fieldName.get();
  }

  public SimpleStringProperty fieldNameProperty() {
    return fieldName;
  }

  public void setFieldName(String fieldName) {
    this.fieldName.set(fieldName);
  }

  boolean isGrouping() {
    return grouping.get();
  }

  SimpleBooleanProperty groupingProperty() {
    return grouping;
  }

  void setGrouping(boolean grouping) {
    this.grouping.set(grouping);
  }

  @Override
  public String toString() {
    return getFieldName();
  }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.