Row
Informa los datos de cada fila. Por ejemplo, si RunReportRequest contiene lo siguiente:
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
Una fila con "in_app_purchase" como eventName, "JP" como countryId y 15 como eventCount sería:
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
Campos |
dimensionValues[] |
object (DimensionValue )
Es la lista de valores de dimensión solicitados. En un PivotReport, los dimensionValues solo se enumeran para las dimensiones incluidas en un pivote.
|
metricValues[] |
object (MetricValue )
Es la lista de valores de métricas visibles solicitados.
|
MetricValue
Es el valor de una métrica.
Representación 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 .
} |
Campos |
Campo de unión one_value . Uno de los valores de métrica one_value puede ser uno de los siguientes: |
value |
string
Valor de la medición. Consulta MetricHeader para conocer el tipo.
|
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2024-11-22 (UTC)
[null,null,["Última actualización: 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"]]