Summarize iReport Template Data

From IMSMA Wiki
Revision as of 19:16, 19 September 2013 by Noah (talk | contribs) (Displaying Totals)
Jump to: navigation, search

Summarizing Report Data

In addition to displaying report details in an iReport template, the iReport Designer allows you create summaries or calculations of data returned in the report. These can take the form of totals, sums, and counts (stored in Variables), or more complicated data summaries such as Crosstabs or Charts. Because summarizing data necessarily depends on multiple records, data summaries must exist in bands after the Detail band such as the Summary band, Footer bad, or Group Footer bands.

Adding a Footer or Summary Section to the Report

Totals, averages, and other summary data are typically found at the end of a grouping or at the end of a report. If a desired band is not visible on the iReport Designer canvas:

  1. Select the desired band in the Report Inspector
  2. In the Properties pane, change the Band Height property to something more than 0 (e.g. 50).

Displaying Counts

iReport has a built-in variable for calculating the number of records in a report and the number of records in each group if the report contains groups. The number of records in the report is stored in the REPORT_COUNT variable. The number of records in each group is stored in the <GroupField>_COUNT where GroupField is the name of the field on which the group is created.

To display one of the built-in count variables in the report:

  1. Expand the appropriate section to the report. If you would like to add the number of records in the report, you will need to expand the summary section of the report. If you would like to add the number of records for each group, you will need to expand the <GroupField>Footer section.
  2. From the Report Inspector, select Variables.
  3. The REPORT_COUNT variable will always be available in the Variables list. The variable to display the count for the group will only be displayed if the report contains groups.
  4. To display the number of records in your report, drag the REPORT_COUNT variable to the summary section of the report.
Figure 22. REPORT_COUNT element in summary section

Figure 22. REPORT_COUNT element in summary section

Note.jpg If the REPORT_COUNT element is dragged to a section of the report other than the summary, the value returned by the REPORT_COUNT variable will be determined by where it is placed. For example, if the REPORT_COUNT is placed in the pageFooter section, the value returned will be the number of records displayed so far.
  1. To display the number of records in each group, drag the <GroupName>_COUNT variable to the <GroupName>Footer section.
Note.jpg It may be helpful to add a text label beside any counts that you add to report to identify the value. To add a text label, click the IRepText.png icon.

Displaying Totals

iReport allows you to display the total of a particular attribute in the report. This is done by creating a variable to store the total value (see Adding a Variable to an iReport).

To display a total:

  1. Ensure that a group footer or summary section has been added to the report.
  2. From the Report Inspector pane, choose Variables and drag the variable to the summary section. If you drag it to the footer, the total for the values in the group will be calculated. If you drag it to the summary, the total for all values will be calculated.

In addition to the built-in functions to calculate the number of records and the sum of a field, iReport also allows you to define other types of variable calculations. A variable is a named object that stores the result of a calculation. iReport allows you to define new variables and how those variables should be calculated. For example, you may define a variable that calculates the average for a particular field such as the area size. Or, you may wish to display the maximum value of a field. In these situations, you may define a custom variable.

To create a custom variable:

  1. Follow the steps to add a variable to an iReport
  2. From the Calculation Type list in the Properties pane, select the calculation that you would like to perform.
Table 4. Calculation types
Calculation type Description
None No type calculation performed.
Count Counts the number of non-null results.
Distinct count Counts the number of unique results.
Sum Adds the values together.
Average Averages the values together.
Lowest Returns the lowest value.
Highest Returns the highest value.
Standard deviation Returns the standard deviation of all values.
Variance Returns the variance of all values.
System No calculation is made. Instead the last value is stored.
  1. From the Reset Type list, select when a variable value should be reset to the initial value. For example, suppose you wanted to count the number of accidents in each location. Each time a new group—in this case a location—is encountered, the variable should be reset. To do this, you would need to reset the value of the variable after each group.
Table 5. Reset Types
Reset Type Description
None The initial value is always ignored.
Report The variable is initialised once at the beginning of the report using the Initial Expression value.
Page The variable is initialised at the top of each new page.
Column The variable is initialised in each new column.
Group The variable is initialised at each new group.
  1. If you select Group as the Reset Type, you will need to select the group on which you would like to reset the variable from the Reset Group list. The Reset Group list will contain all fields on which the report is grouped.
Note.jpg If the field on which the variable should be reset is not listed in the Reset Group list, be sure that the field is included as one of the grouping levels for the report.
  1. The Variable Expression field specifies the expression that will be provided to the variable. Typically, this will be the value of a field in the report. To specify a field in the report edit the Variable Expression field.
    Variable Expression Editor
    Variable Expression Editor
  2. In addition to the summary functions available on the variable, specific expressions can be used in the Expression Editor to define values. For example:

    Table 5. Reset Types
    Operation Expression
    Division $F{areaSize}/$V{REPORT_COUNT}
    Addition $F{areaSize} + 500.0
    Subtraction $F{areaSize} - $P{ClearedArea}
    Multiplication $F{areaSize} * $V{REPORT_COUNT}
    Concatenation The variable is initialised at each new group.

    </center>


</ol>

Crosstabs

???

Charts

Charts provide a visual representation of the report data. Before you add a chart to your report, you should ensure that your report contains the following:

  • At least one grouping. The report groupings are used by iReport to determine what fields may be plotted.
  • At least one variable that contains a calculation. This calculation may be a count, total, or other custom calculation. These calculated variables define the size of the chart segment.

Pie Chart

Note.jpg The sample report Pie Chart Sample.jrxm lin the <iReport Installation Directory>\iReports_IMSMA\IMSMA reports directory provides an example of a report that includes a pie chart.

To add a pie chart to the report:

  1. Create a report which groups the results by the attribute on which you would like to base your chart.
  2. After creating the report, you should add a footer for the attribute on which the results will be grouped. This footer will be used to display the total for the group that will subsequently be used in the pie chart. To add a group footer:
    1. From the View menu, select Bands.
    2. The <FileName> bands… window displays.
    3. Select <GroupAttribute>Footer from the left pane where GroupAttribute is the name of the attribute on which the results will be grouped. For example, if you are creating a report on land and group the results by the priority, the name of the band would be priorityFooter.
    4. In the right pane, enter a numeric value in the Band Height field. You may adjust the height of the summary.
    5. Click the Apply button.
  3. Add a summary section to the report.
  4. Click the File:IRepBarChart.png icon.
  5. In the summary section of the report, hold down the mouse button and drag the cursor to form the rectangle which will contain the chart.
  6. A window of the various chart options displays.
  7. Select one of the pie chart options.

Figure 26. Pie chart options

  1. Click the OK button.
  2. Right-click anywhere on the chart.
  3. Select the Chart Properties option.
  4. From the Chart Properties window, select the Chart Data tab.
  5. From the Chart Data tab, select the Details tab.
  6. The Section Value tab should be selected by default. If it is not, select it.
  7. The Key Expression defines the various slices of the pie chart. This will typically be each unique value for an attribute. For example, if the chart were to contain the total area size of land with a particular priority, the Key Expression would return the unique values for priority (e.g., Low, Medium, or High). To enter the key expression value:
    1. Click the File:IRepEditor.png icon that is displayed beside the Key Expression field.
    2. The Expression editor window displays.
    3. From the bottom pane, double-click the name of the attribute that contains the data that you would like to include in the chart.
    4. The expression to represent the attribute displays in the top pane.
    5. In order to account for null values, you will need to modify the expression so that null values are grouped into their own group. The expression should be modified to include the bolded text below. You should replace attribute with the name of the attribute that you selected in step b above.
    6. $F{attribute} != null ? $F{attribute} : "Unknown"
    7. Click the Apply button.
  8. The Value Expression field contains the expression that returns the numeric value for the key. For example, it may be the total land size of high priority land.
    1. Click the File:IRepEditor.png icon that is displayed beside the Value Expression field.
    2. The Expression editor window displays.
    3. From the Objects and expressions tab, select Variables from the left pane.
    4. From the middle pane at the bottom of the Expression editor window, double-click the name of the variable that was created to store the total.
    5. Click the Apply button.
  9. The Label Expression field contains the expression that is used to determine the label for the segment of the pie chart. Because this expression will most likely be the same as the one used in the Key Expression, you can copy the expression from the Key Expression field and paste it into the Label Expression field.
  10. The following figure is an example of the Chart Properties window for a report that contains a pie chart which graphs the total area size of land based on their priority.

Figure 27. Chart Properties

  1. Click the Close button
  2. The Chart Properties window closes.
  3. Save the report by either clicking the icon, or by selecting the Save option from the File menu.

Below is an example of a report template that totals the area size of land by priority.

Figure 28. Sample report template with pie chart

The resulting report pages are shown below.

Figure 29. Sample report with pie chart

Bar Charts

Note.jpg The sample report Bar Chart Sample.jrxm lin the <iReport Installation Directory>\iReports_IMSMA\IMSMA reports directory provides an example of a report that includes a bar chart.

To add a bar chart to the report:

  1. Create a report which groups the results by the attribute on which you would like to base your chart.
  2. After creating the report, you should add a footer for the attribute on which the results will be grouped. This footer will be used to display the total for the group that will subsequently be used in the pie chart. To add a group footer:
    1. From the View menu, select Bands.
    2. The <FileName> bands… window displays.
    3. Select <GroupAttribute>Footer from the left pane where GroupAttribute is the name of the attribute on which the results will be grouped. For example, if you are creating a report on land and group the results by the priority, the name of the band would be priorityFooter.
    4. In the right pane, enter a numeric value in the Band Height field. You may adjust the height of the summary
    5. Click the Apply button.
  3. Add a summary section to the report.
  4. Click the File:IRepBarChart.png icon.
  5. In the summary section of the report, hold down the mouse button and drag the cursor to form the rectangle which will contain the chart.
  6. A window of the various chart options displays.
  7. Select one of the bar chart options.
  8. Click the OK button.
  9. Right-click anywhere on the chart.
  10. Select the Chart Properties option.
  11. From the Chart Properties window, select the Chart Data tab.
  12. From the Chart Data tab, select the Details tab.
  13. Click the Add button.
  14. The Chart Properties window displays. By default, the Data tab should be selected.
  15. The Series Expression allows you to define an added level of detail to your bar chart. To enter the series expression value:
    1. Click the File:IRepEditor.png icon that is displayed beside the Key Expression field.
    2. The Expression editor window displays.
    3. From the bottom pane, double-click the name of the attribute that contains the data that you would like to include in the chart.
    4. The expression to represent the attribute displays in the top pane.
    5. In order to account for null values, you will need to modify the expression so that null values are grouped into their own group. The expression should be modified to include the bolded text below. You should replace attribute with the name of the attribute that you selected in step b above.
    6. $F{attribute} != null ? $F{attribute} : "Unknown"

    7. Click the Apply button.

    The expression that you enter in the Series Expression field will vary based on how you want the horizontal axis to appear:

    • If you would like the horizontal axis of the bar chart to reflect a single attribute such as the chart displayed below, the Series Expression will be the same as the Category expression.
Figure 30. Bar chart –Single attribute y-axis

Figure 30. Bar chart –Single attribute y-axis

    • If you would like the horizontal axis of the bar chart to reflect the values of an additional attribute, the Series Expression would be the expression for the secondary level of detail. In the example shown below, the x-axis reflects the land priorities (e.g., Low, Medium, or High). In addition to displaying the priority, the bars of the chart use a different colour to reflect those land which block water access (red) vs. those that do not block the water (blue).
Figure 31. Bar chart with different series expression

Figure 31. Bar chart with different series expression

    The Chart Properties window for this bar chart is shown below. Notice that the series expression and category expression differ.

Figure 32. Chart Properties – Different series and category expressions

    • If you selected one of the stacked bar chart options, the series expression will be used to determine the segments of each bar. In the following figure, the series expression creates red and blue segments in each bar to indicate whether or not water access is blocked.

Figure 33. Stacked bar chart

  1. The Category Expression is the major grouping of the horizontal axis. To enter the category expression:
    1. Click the File:IRepEditor.png icon that is displayed beside the Category expression field.
    2. The Expression editor window displays.
    3. From the bottom pane, double-click the name of the attribute that contains the data that you would like to include in the chart.
    4. The expression to represent the attribute displays in the top pane.
    5. In order to account for null values, you will need to modify the expression so that null values are grouped into their own group. The expression should be modified to include the bolded text below. You should replace attribute with the name of the attribute that you selected in step b above.
    6. $F{attribute} != null ? $F{attribute} : "Unknown"

    7. Click the Apply button.
  2. The Value Expression field contains the expression that returns the numeric value for the key.
    1. Click the File:IRepEditor.png icon that is displayed beside the Value Expression field.
    2. The Expression editor window displays.
    3. From the Objects and expressions tab, select Variables from the left pane.
    4. From the middle pane at the bottom of the Expression editor window, double-click the name of the variable that was created to store the total.
    5. Click the Apply button.
  3. Click the OK button.
  4. The Chart Properties window closes.
  5. Click the Close button.
  6. The Chart Properties window closes.
  7. Save the report by either clicking the File:IRepSave.png icon, or by selecting the Save option from the File menu.

Grouped Bar Chart

The horizontal axis of the bar charts discussed in the previous section compared the values of a single variable. For example, the bar chart below compares the number of different activity types.

Figure 34. Bar chart comparing values of a single variable

In this section, you will learn how to create a grouped bar chart. A grouped bar chart compares the values of a single variable in one group to the same variables in another group. In the example below, the grouped bar chart still compares the number of activity types. However, the chart also compares the number of activity types between the districts. The number of activity types (clearance, impact survey, technical survey, and road clearance) are represented by the different bar colours as indicated in the legend. The coloured bars are clustered together based on their district. The first cluster of bars shows the number of activity in the Bolikon district. The second cluster of bars shows the number of activities in the Waltern district.

Figure 35. Grouped bar chart comparing values of a single variable

The two main differences between adding a bar chart and a grouped bar chart are:

  • The grouped bar chart requires that you specify at least two groupings for the report.
  • The key expression and the category expression will differ; whereas, for a bar chart, the value for these expressions is the same.

To add a grouped bar chart to the report:

  1. Create a report which groups the results by the fields that will be represented on the horizontal axis of the chart.
Note.jpg For a grouped bar chart, you will need to specify at least two groupings.
  1. Add any variables that you may need to calculate the value that you would like to show on the chart.
  2. If you would like to display the calculated variable for each group, you should add the footer for the field on which the results will be grouped. This footer will be used to display the variable for the group that will subsequently be used in the chart. To add a group footer:
    1. From the View menu, select Bands.
    2. The <FileName> bands… window displays.
    3. Select <GroupFieldName>Footer from the left pane where GroupFieldNameis the name of the field on which the results will be grouped. For example, if you are creating a report on land and group the results by the priority, the name of the band would be priorityFooter.
    4. In the right pane, enter a numeric value in the Band Height field. You may adjust the height of the summary.
    5. Click the Apply button.
    6. Add a summary section to the report.
  3. Click the File:IRepBarChart.png icon.
  4. In the summary section of the report, hold down the mouse button and drag the cursor to form the rectangle which will contain the chart.
  5. A window of the various chart options displays.
  6. Select one of the bar chart options.

Figure 36. Bar chart options

  1. Click the OK button.
  2. Right-click anywhere on the chart.
  3. select the Chart Properties option.
  4. From the Chart Properties window, select the Chart Data tab.
  5. From the Chart Data tab, select the Details tab.
  6. Click the Add button.
  7. The Chart Properties window displays. By default, the Data tab should be selected.
  8. For a grouped bar chart, the series expression contains the field whose distinct values you would like to show via different colours on the bar chart.

Figure 37. Bar chart series expression

To enter the series expression:

    1. Click the File:IRepEditor.png icon that is displayed beside the Key Expression field.
    2. The Expression editor window displays.
    3. From the bottom pane, double-click the name of the field that contains the data that you would like to include in the chart.
    4. The expression to represent the field displays in the top pane.
    5. Click the Apply button.
  1. The Category Expression is the field by which the series expression is grouped together.

Figure 38. Bar chart category expression

To enter the category expression:

    1. Click the File:IRepEditor.png icon that is displayed beside the Category expression field.
    2. The Expression editor window displays.
    3. From the bottom pane, double-click the name of the field that contains the data that you would like to include in the chart.
    4. The expression to represent the field displays in the top pane.
    5. Click the Apply button.
  1. The Value Expression field contains the variable that returns the numeric value that will be represented on the chart.
    1. Click the File:IRepEditor.png icon that is displayed beside the Value Expression field.
    2. The Expression editor window displays.
    3. From the Objects and expressions tab, select Variables from the left pane.
    4. From the middle pane at the bottom of the Expression editor window, double-click the name of the variable that you would like to represent on the chart.
    5. Click the Apply button.
  2. Click the OK button.
  3. The Chart Properties window closes.
  4. Click the Close button.
  5. The Chart Properties window closes.
  6. Save the report by either clicking the File:IRepSave.png icon, or by selecting the Save option from the File menu.
Note.jpg iReport requires you to save the report after adding or changing a chart.
  1. Click the File:IRepCompile.png button to compile the report.
  2. Click the File:IRepRun.png button to execute the report.

Stacked Bar Chart

A stacked bar chart is similar to a grouped bar in that it allows you to represent two different fields on the chart. The key difference is that the stacked bar chart layers the values of the series expression (the field represented in the legend) allowing you to easily compare the categories to one another.

Figure 39. Stacked bar chart

To add a grouped bar chart to the report:

  1. Create a report which groups the results by the fields that will be represented on the horizontal axis of the chart.
Note.jpg For a stacked bar chart, you will need to specify at least two groupings.
  1. Add any variables that you may need to calculate the value that you would like to show on the chart.
  2. If you would like to display the calculated variable for each group, you should add the footer for the field on which the results will be grouped. This footer will be used to display the variable for the group that will subsequently be used in the chart. To add a group footer:
    1. From the View menu, select Bands.
    2. The <FileName> bands… window displays.
    3. Select <GroupFieldName>Footer from the left pane where GroupFieldName is the name of the field on which the results will be grouped. For example, if you are creating a report on land and group the results by the priority, the name of the band would be priorityFooter.
    4. In the right pane, enter a numeric value in the Band Height field. You may adjust the height of the summary
    5. Click the Apply button.
  3. Add a summary section to the report.
  4. Click the File:IRepBarChart.png icon.
  5. In the summary section of the report, hold down the mouse button and drag the cursor to form the rectangle which will contain the chart.
  6. A window of the various chart options displays.
  7. Select one of the stacked bar chart options.

Figure 40. Stacked bar chart options

  1. Click the OK button.
  2. Right-click anywhere on the chart.
  3. Select the Chart Properties option.
  4. From the Chart Properties window, select the Chart Data tab.
  5. From the Chart Data tab, select the Details tab.</li.
  6. Click the Add button.
  7. The Chart Properties window displays. By default, the Data tab should be selected.
  8. For a stacked bar chart, the series expression contains the fields whose distinct value.
  9. For a grouped bar chart, the series expression contains the field whose distinct values you would like to show via different colours on the bar chart. To enter the series expression:
    1. Click the File:IRepEditor.png icon that is displayed beside the Key Expression field.
      The Expression editor window displays.
    2. From the bottom pane, double-click the name of the field that contains the data that you would like to include in the chart.
    3. The expression to represent the field displays in the top pane.
    4. Click the Apply button.
  10. The Category Expression is the field by which the series expression is grouped together. To enter the category expression:
    1. Click the File:IRepEditor.png icon that is displayed beside the Category expression field.</vli>
      The Expression editor window displays.
    2. From the bottom pane, double-click the name of the field that contains the data that you would like to include in the chart.
    3. The expression to represent the field displays in the top pane.

    4. Click the Apply button.
  11. The Value Expression field contains the variable that returns the numeric value that will be represented on the chart.
    1. Click the File:IRepEditor.png icon that is displayed beside the Value Expression field.
    2. The Expression editor window displays.
    3. From the Objects and expressions tab, select Variables from the left pane.
    4. From the middle pane at the bottom of the Expression editor window, double-click the name of the variable that you would like to represent on the chart.
    5. Click the Apply button.
  12. Click the OK button.
  13. The Chart Properties window closes.
  14. Click the Close button.
  15. The Chart Properties window closes.
  16. Save the report by either clicking the File:IRepSave.png icon, or by selecting the Save option from the File menu.
  17. Click the File:IRepCompile.png button to compile the report.
  18. Click the File:IRepRun.png button to execute the report.

Template:NavBox HowTo use iReport