Learn R Programming

googleAnalyticsR (version 1.2.0)

ga_unsampled_download: Download Unsampled Report from Google Drive. You must be authenticated with the same account that you setup the unsampled report. This means service account authentication is not supported.

Description

Download Unsampled Report from Google Drive. You must be authenticated with the same account that you setup the unsampled report. This means service account authentication is not supported.

Usage

ga_unsampled_download(
  reportTitle,
  accountId,
  webPropertyId,
  profileId,
  downloadFile = TRUE
)

Value

file location if downloadFile is TRUE, else a data.frame of download

Arguments

reportTitle

Title of Unsampled Report (case-sensitive)

accountId

Account Id

webPropertyId

Web Property Id

profileId

Profile Id

downloadFile

Default TRUE, whether to download, if FALSE returns a dataframe instead

See Also

Other unsampled download functions: ga_unsampled(), ga_unsampled_list()

Examples

Run this code

if (FALSE) {

    # get data.frame of unsampled reports you have available
    unsample_list <- ga_unsampled_list(accountId = "12345", 
                                       webPropertyId = "UA-12345-4", 
                                       profileId = "129371234")
                                       
    # loop through unsampled reports and download as a list of data.frames
    dl <- lapply(unsample_list$title, ga_unsampled_download, 
                 accountId = "12345", 
                 webPropertyId = "UA-12345-4", 
                 profileId = "129371234", 
                 downloadFile = FALSE)
                 
    # inspect first data.frame
    dl[[1]]
    
    # download unsampled report to csv file
    ga_unsampled_download("my_report_title", 
                          accountId = "12345", 
                          webPropertyId = "UA-12345-4", 
                          profileId = "129371234")

}

Run the code above in your browser using DataLab