Row
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Báo cáo dữ liệu cho mỗi hàng. Ví dụ: nếu RunReportRequest chứa:
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
Một hàng có eventName là "in_app_purchase", countryId là "JP" và eventCount là 15 sẽ có dạng như sau:
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
Biểu diễn dưới dạng JSON |
{
"dimensionValues": [
{
object (DimensionValue )
}
],
"metricValues": [
{
object (MetricValue )
}
]
} |
Trường |
dimensionValues[] |
object (DimensionValue )
Danh sách các giá trị phương diện được yêu cầu. Trong PivotReport, dimensionValues chỉ được liệt kê cho các phương diện có trong một báo cáo tổng hợp.
|
metricValues[] |
object (MetricValue )
Danh sách các giá trị chỉ số hiển thị được yêu cầu.
|
MetricValue
Biểu diễn dưới dạng 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 .
} |
Trường |
Trường hợp hợp nhất one_value . Một trong các giá trị chỉ số one_value chỉ có thể là một trong những giá trị sau: |
value |
string
Giá trị đo lường. Xem MetricHeader để biết loại.
|
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2024-11-22 UTC.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 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."]]],[]]