Row
דיווח על נתונים לכל שורה. לדוגמה, אם RunReportRequest מכיל:
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
שורה אחת עם 'in_app_purchase' בתור eventName, 'JP' בתור countryId ו-15 בתור eventCount, תהיה:
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
שדות |
dimensionValues[] |
object (DimensionValue )
רשימת ערכי המאפיינים המבוקשים. בדוח PivotReport, ערכי המאפיינים מפורטים רק לגבי מאפיינים שכלולים ב-Pivot.
|
metricValues[] |
object (MetricValue )
רשימת ערכי המדדים הגלויים המבוקשים.
|
MetricValue
ייצוג ב-JSON |
{
// Union field one_value can be only one of the following:
"value": string
// End of list of possible types for union field one_value .
} |
שדות |
שדה האיחוד one_value . אחד מהערכים של המדד one_value יכול להיות רק אחד מהערכים הבאים: |
value |
string
ערך המדידה. הסוג מופיע ב-MetricHeader.
|
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2024-11-22 (שעון UTC).
[null,null,["עדכון אחרון: 2024-11-22 (שעון UTC)."],[[["Report data is structured in rows, with each row containing dimension values and corresponding metric values."],["Dimension values represent categories or attributes, like 'eventName' or 'countryId', while metric values represent quantitative data, like 'eventCount'."],["The structure of the report allows for flexible data exploration by combining different dimensions and metrics."],["Metric values can be of various types, including but not limited to string type and are stored under the 'one_value' field as a 'value' entry."]]],["The document outlines data structures for reporting, using JSON. A row contains `dimensionValues` and `metricValues`. `dimensionValues` lists dimension data, while `metricValues` shows metric data. For example, with dimensions like `eventName` and `countryId`, and a metric like `eventCount`, a row might show \"in_app_purchase\" (event), \"JP\" (country), and \"15\" (count). `MetricValue` stores a metric's value as a string. A `MetricValue` can only contain one value, as specified in the union `one_value`.\n"]]