library(ChannelAttributionPro)
data(PathData)
password="yourpassword"
path_attribution=heuristic_models(Data=Data, var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">",
password=password)
print(path_attribution,max=100)
path_attribution=heuristic_models(Data=Data, var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">",
flg_write_nulls=1, password=password)
print(path_attribution,max=100)
path_attribution=heuristic_models(Data=Data, var_path="path", var_conv="total_conversions",
var_value="total_conversion_value", cha_sep=">",
flg_write_nulls=1, password=password)
print(path_attribution,max=100)
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", password=password)
print(res)