0.0
No commit activity in last 3 years
No release in over 3 years
Provides big_cohort, which widens by finding the characteristic that eliminates the most records and removing it. Also provides strict_cohort, which widens by eliminating characteristics in order.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

cohort_scope¶ ↑

Provides cohorts (in the form of ActiveRecord scopes) that dynamically widen until they contain a certain number of records.

  • big_cohort widens by successively removing what it finds to be the most restrictive characteristic until it reaches the minimum number of records

  • strict_cohort widens by eliminating characteristics in order until it reaches the minimum number of records

Real-world use¶ ↑

This has been at use at impact.brighterplanet.com since April 2010, where it helps sift through climate data to come up with meaningful emissions calculations.

Quick start¶ ↑

Let’s pretend the U.S. Census provided information about birthday and favorite color:

class Citizen < ActiveRecord::Base
  extend CohortScope
  self.minimum_cohort_size = 1_000
end

Now I need to run a calculation that ideally uses birthday and favorite color, but most importantly looks at a large cohort:

Citizen.big_cohort :birthdate => (Date.parse('1980-01-01')..Date.parse('1990-01-01')), :favorite_color => 'heliotrope'
# => [... a cohort of at least 1,000 records (otherwise it's empty),
          where everybody's favorite color MAY be heliotrope
          and everybody's birthday MAY be between 1980 and 1990
          (at least one of those characteristics will hold) ...]

What if my calculation privileges favorite color? In other words, if you can’t give me a cohort of minimum size within the birthday characteristic, at least give me one where everybody loves heliotrope:

ordered_characteristics = []
ordered_characteristics << [:favorite_color, 'heliotrope']
ordered_characteristics << [:birthdate, (Date.parse('1980-01-01')..Date.parse('1990-01-01'))]

Citizen.strict_cohort *favorite_color_matters_most
# => [... a cohort of at least 1,000 records (otherwise it's empty),
          where everybody's favorite color IS heliotrope
          and everybody's birthday MAY be between 1980 and 1990 ...]

Wishlist¶ ↑

Copyright © 2012 Brighter Planet, Inc. See LICENSE for details.