Hi Team,
Please give more details on Journey AI whether it supports Adobe Campaign classic v7 & v8. If not,what is the alternate solution we can look into Adobe campaign classic to implement Send-time Optimization and Engagement Scoring.
Thank you
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hello @Arthi, i did once implemented send time optimization
//Convert the date and time information into a format suitable for analysis.
//For example, you can represent the time of day as the number of minutes since midnight.
var emailData = [
{ sendTime: 8 * 60, open: 1 }, // Email sent at 8:00 AM and opened
{ sendTime: 9 * 60, open: 0 }, // Email sent at 9:00 AM and not opened
{ sendTime: 10 * 60, open: 1 }
// ... (more data)
];
/*
functions to calculate correlations
...
...
*/
//results
Best send time: 10:00
Correlation for the best send time: 0.8579616512303485
Ask GPT on both and how to implement them in JS ES5
Marcel
Views
Replies
Total Likes
Hello @Arthi, i did once implemented send time optimization
//Convert the date and time information into a format suitable for analysis.
//For example, you can represent the time of day as the number of minutes since midnight.
var emailData = [
{ sendTime: 8 * 60, open: 1 }, // Email sent at 8:00 AM and opened
{ sendTime: 9 * 60, open: 0 }, // Email sent at 9:00 AM and not opened
{ sendTime: 10 * 60, open: 1 }
// ... (more data)
];
/*
functions to calculate correlations
...
...
*/
//results
Best send time: 10:00
Correlation for the best send time: 0.8579616512303485
Ask GPT on both and how to implement them in JS ES5
Marcel
Views
Replies
Total Likes
Did you find out how to use predictive models?
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies