Skip to main content
Version: 3.13

heuristic_models

R

#Load library and data

library(ChannelAttributionPro)

Data=read.csv("https://app.channelattribution.io/data/Data.csv",sep=";")

#Set your token

token="yourtoken"

#Perform transaction level attribution from a data.frame

path_attribution=heuristic_models(Data=Data, var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">")
print(path_attribution,max=100)

#Return non converting paths in the output data.frame

path_attribution=heuristic_models(Data=Data, var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">",
flg_write_nulls=1)
print(path_attribution,max=100)

#Return paths in the output data.frame

path_attribution=heuristic_models(Data=Data, var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">",
flg_write_nulls=1)
print(path_attribution,max=100)

#Perform transaction level attribution from a file and write output to file

download.file("https://app.channelattribution.io/data/Data.csv", "Data.csv", method = "auto")

res=heuristic_models(Data="Data.csv", var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">", row_sep=";",
file_output="ouput.csv")
print(res)