Skip to content

Commit

Permalink
GMP doc: add STATS to AGGREGATE/OVERALL in GET_AGGREGATES
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmundell committed Jun 26, 2024
1 parent 74a3da2 commit 68c45d7
Showing 1 changed file with 41 additions and 22 deletions.
63 changes: 41 additions & 22 deletions src/schema_formats/XML/GMP.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -7983,10 +7983,7 @@ END:VCALENDAR
<pattern>
<e>count</e>
<e>c_count</e>
<e>min</e>
<e>max</e>
<e>mean</e>
<e>sum</e>
<any><e>stats</e></any>
</pattern>
<ele>
<name>count</name>
Expand All @@ -8000,24 +7997,46 @@ END:VCALENDAR
<pattern><t>integer</t></pattern>
</ele>
<ele>
<name>min</name>
<summary>Overall minimum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>max</name>
<summary>Overall maximum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>mean</name>
<summary>Overall arithmetic mean of the numeric values of the data</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>sum</name>
<summary>Overall sum of the numeric values of the data column</summary>
<pattern><t>text</t></pattern>
<name>stats</name>
<summary>Statistics of a data column</summary>
<pattern>
<attrib>
<name>column</name>
<summary>Name of the column the stats apply to</summary>
<type>text</type>
</attrib>
<e>min</e>
<e>max</e>
<e>mean</e>
<e>sum</e>
<e>c_sum</e>
</pattern>
<ele>
<name>min</name>
<summary>Overall minimum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>max</name>
<summary>Overall maximum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>mean</name>
<summary>Overall arithmetic mean of the numeric values of the data</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>sum</name>
<summary>Overall sum of the numeric values of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>c_sum</name>
<summary>Cumulative sum of the numeric values of the data column</summary>
<description>For overall this is always the same as sum.</description>
<pattern><t>text</t></pattern>
</ele>
</ele>
</ele>
<ele>
Expand Down

0 comments on commit 68c45d7

Please sign in to comment.