我需要通过我们销售的两个基本产品类别(我们将其称为type1和type2)来过滤Google Analytics(分析)MCF报告。

我当前通过R包RGA进行的API调用是:

get_mcf(profileId = 'xxxxx',
        start.date = '2016-10-01',
        end.date = '2016-12-31',
        metrics = 'mcf:totalConversions, mcf:totalConversionValue',
        dimensions = 'mcf:basicChannelGroupingPath',
        samplingLevel = 'HIGHER_PRECISION',
        max.results = 10000,
        token = 'xxxxx')


这样,我可以获得所有产品的MCF路径。
我现在需要做的是添加过滤器或细分,这将允许我为产品名称添加过滤器,例如

ga:productName=@type1


我怎样才能做到这一点?

谢谢

最佳答案

MCF api可以使用的维度和指标数量有限。据我所知,没有mfc:productName维度

您可以在Dimensions & Metrics Reference上找到可与此API一起使用的维度和指标的完整列表。

08-24 13:32