Last chance! 50% off unlimited learning
Sale ends in
Get data on expenses, impressions and clicks on advertising campaigns, keywords and ads for further loading into 'Google Analytics' source.
yadirGetCostData(
DateFrom = Sys.Date() - 31,
DateTo = Sys.Date() - 1,
Source = 'yandex',
Medium = 'cpc',
IncludeVAT = "YES",
IncludeDiscount = "NO",
Login = getOption("ryandexdirect.user"),
AgencyAccount = getOption("ryandexdirect.agency_account"),
FetchBy = NULL,
Token = NULL,
TokenPath = yadirTokenPath())
Data frame with cost data
If your select CUSTOM_DATE in DateRangeType you must enter start date in this argument in YYYY-MM-DD format else you can not used this argument
If your select CUSTOM_DATE in DateRangeType you must enter end date in this argument in YYYY-MM-DD format else you can not used this argument
Character, UTM source
Character, UTM medium
Include or exclude VAT, one of "NO" or "YES"
Include or exclude Discount, one of "NO" or "YES"
Your Yandex Login
Your agency account login, if you get statistic from client account
Split the query by date range. Allowed values: "DAY", "WEEK", "MONTH", "QUARTER", "YEAR".
Path to directory where you save credential data
character or list object, your Yandex API Token, you can get this by function yadirGetToken or yadirAuth
Alexey Seleznev
if (FALSE) {
###
# Use googleAnalyticsR for upload data into Google Analytics
library(googleAnalyticsR)
# load cost data
cost_data <- yadirGetCostData(DateFrom = "2020-05-10",
DateTo = '2020-05-14')
# upload into GA source
ga_custom_upload_file(accountId = xxxx,
webPropertyId = "UA-xxxx-1",
customDataSourceId = 'abcdefg',
cost_data)
}
Run the code above in your browser using DataLab