val timeToCustomerContact = timeDiff[AnalyticsQuote, Long](_.sent_time, _.first_customer_contact_time) | |
val customerContactWithin3Days = lessThan[AnalyticsQuote, Long](timeToCustomerContact(_), 86400*1000*3) | |
val CustomerContactsWithin3Days = countIf[AnalyticsQuote](customerContactWithin3Days(_)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment