I need your help.
I'm using KeenIO and SDK Ruby
- Can I run in single query multiple types of analyses for different time frame? something like Multi-Analysis, but in each analyse set time frame.
for example:
Keen.multi_analysis(:users, analyses: {
week: {
analysis_type: 'count', timeframe: 'this_7_days'
}, {
month: {
analysis_type: 'count', timeframe: 'this_30_days'
}
})
- Same as in 1 but for difference tables.
P.S. Maybe I can do it via JavaScript?
Thx!