Row
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
行ごとにデータを報告します。たとえば、RunReportRequest に次の内容が含まれているとします。
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
eventName が「in_app_purchase」、countryId が「JP」、eventCount が 15 の 1 行は次のようになります。
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
フィールド |
dimensionValues[] |
object (DimensionValue )
リクエストされたディメンション値のリスト。PivotReport では、ピボットに含まれるディメンションのディメンション値のみがリストされます。
|
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 は、次のいずれか 1 つにする必要があります。 |
value |
string
測定値。タイプについては、MetricHeader をご覧ください。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-11-22 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 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."]]],[]]