Class: FieldTest::Experiment

Inherits:
Object
  • Object
show all
Defined in:
lib/field_test/experiment.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Experiment

Returns a new instance of Experiment.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/field_test/experiment.rb', line 5

def initialize(attributes)
  attributes = attributes.symbolize_keys
  @id = attributes[:id]
  @name = attributes[:name] || @id.to_s.titleize
  @description = attributes[:description]
  @variants = attributes[:variants]
  if @variants.any? { |v| !v.is_a?(String) }
    raise Error, "Only string variants are supported (#{id})"
  end
  @weights = @variants.size.times.map { |i| attributes[:weights].to_a[i] || 1 }
  @winner = attributes[:winner]
  @closed = attributes[:closed]
  @keep_variant = attributes[:keep_variant]
  @started_at = Time.zone.parse(attributes[:started_at].to_s) if attributes[:started_at]
  @ended_at = Time.zone.parse(attributes[:ended_at].to_s) if attributes[:ended_at]
  @goals = attributes[:goals] || ["conversion"]
  @goals_defined = !attributes[:goals].nil?
  @use_events = attributes[:use_events]
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def description
  @description
end

#ended_atObject (readonly)

Returns the value of attribute ended_at.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def ended_at
  @ended_at
end

#goalsObject (readonly)

Returns the value of attribute goals.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def goals
  @goals
end

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def name
  @name
end

#started_atObject (readonly)

Returns the value of attribute started_at.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def started_at
  @started_at
end

#variantsObject (readonly)

Returns the value of attribute variants.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def variants
  @variants
end

#weightsObject (readonly)

Returns the value of attribute weights.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def weights
  @weights
end

#winnerObject (readonly)

Returns the value of attribute winner.



3
4
5
# File 'lib/field_test/experiment.rb', line 3

def winner
  @winner
end

Class Method Details

.allObject



192
193
194
195
196
# File 'lib/field_test/experiment.rb', line 192

def self.all
  FieldTest.config["experiments"].map do |id, settings|
    FieldTest::Experiment.new(settings.merge(id: id.to_s))
  end
end

.find(id) ⇒ Object



185
186
187
188
189
190
# File 'lib/field_test/experiment.rb', line 185

def self.find(id)
  experiment = all.index_by(&:id)[id.to_s]
  raise FieldTest::ExperimentNotFound unless experiment

  experiment
end

Instance Method Details

#active?Boolean

Returns:

  • (Boolean)


161
162
163
# File 'lib/field_test/experiment.rb', line 161

def active?
  !winner
end

#closed?Boolean

Returns:

  • (Boolean)


165
166
167
# File 'lib/field_test/experiment.rb', line 165

def closed?
  @closed
end

#controlObject



173
174
175
# File 'lib/field_test/experiment.rb', line 173

def control
  variants.first
end

#convert(participants, goal: nil) ⇒ Object



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/field_test/experiment.rb', line 61

def convert(participants, goal: nil)
  return false if winner

  goal ||= goals.first

  participants = FieldTest::Participant.standardize(participants)
  check_participants(participants)
  membership = membership_for(participants)

  if membership
    if membership.respond_to?(:converted)
      membership.converted = true
      membership.save! if membership.changed?
    end

    if use_events?
      FieldTest::Event.create!(
        name: goal,
        field_test_membership_id: membership.id
      )
    end

    true
  else
    false
  end
end

#eventsObject



93
94
95
# File 'lib/field_test/experiment.rb', line 93

def events
  FieldTest::Event.joins(:field_test_membership).where(field_test_memberships: {experiment: id})
end

#keep_variant?Boolean

Returns:

  • (Boolean)


169
170
171
# File 'lib/field_test/experiment.rb', line 169

def keep_variant?
  @keep_variant
end

#membershipsObject



89
90
91
# File 'lib/field_test/experiment.rb', line 89

def memberships
  FieldTest::Membership.where(experiment: id)
end

#multiple_goals?Boolean

Returns:

  • (Boolean)


97
98
99
# File 'lib/field_test/experiment.rb', line 97

def multiple_goals?
  goals.size > 1
end

#results(goal: nil) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/field_test/experiment.rb', line 101

def results(goal: nil)
  goal ||= goals.first

  relation = memberships.group(:variant)
  relation = relation.where("field_test_memberships.created_at >= ?", started_at) if started_at
  relation = relation.where("field_test_memberships.created_at <= ?", ended_at) if ended_at

  if use_events? && @goals_defined
    data = {}

    participated = relation.count

    adapter_name = relation.connection_db_config.adapter.to_s
    column =
      if FieldTest.legacy_participants
        :participant
      elsif adapter_name.match?(/postg/i) # postgres
        "(participant_type, participant_id)"
      elsif adapter_name.match?(/mysql|trilogy/i)
        "COALESCE(participant_type, ''), participant_id"
      else
        # SQLite supports single column
        "COALESCE(participant_type, '') || ':' || participant_id"
      end

    converted = events.merge(relation).where(field_test_events: {name: goal}).distinct.count(column)

    (participated.keys + converted.keys).uniq.each do |variant|
      data[[variant, true]] = converted[variant].to_i
      data[[variant, false]] = participated[variant].to_i - converted[variant].to_i
    end
  else
    data = relation.group(:converted).count
  end

  results = {}
  variants.each do |variant|
    converted = data[[variant, true]].to_i
    participated = converted + data[[variant, false]].to_i
    results[variant] = {
      participated: participated,
      converted: converted,
      conversion_rate: participated > 0 ? converted.to_f / participated : nil
    }
  end

  if variants.size <= 3
    probabilities =
      cache_fetch(["field_test", "probabilities"] + results.flat_map { |_, v| [v[:participated], v[:converted]] }) do
        BinaryTest.probabilities(results.values)
      end

    results.each_key.zip(probabilities) do |variant, prob_winning|
      results[variant][:prob_winning] = prob_winning
    end
  end

  results
end

#use_events?Boolean

Returns:

  • (Boolean)


177
178
179
180
181
182
183
# File 'lib/field_test/experiment.rb', line 177

def use_events?
  if @use_events.nil?
    FieldTest.events_supported?
  else
    @use_events
  end
end

#variant(participants, **options) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/field_test/experiment.rb', line 25

def variant(participants, **options)
  return winner if winner && !keep_variant?
  return control if options[:exclude]

  participants = FieldTest::Participant.standardize(participants)
  check_participants(participants)
  membership = membership_for(participants) || FieldTest::Membership.new(experiment: id)

  if winner # and keep_variant?
    return membership.variant || winner
  end

  if options[:variant] && variants.include?(options[:variant])
    membership.variant = options[:variant]
  else
    membership.variant ||= closed? ? control : weighted_variant
  end

  participant = participants.first

  # upgrade to preferred participant
  membership.participant = participant.participant if membership.respond_to?(:participant=)
  membership.participant_type = participant.type if membership.respond_to?(:participant_type=)
  membership.participant_id = participant.id if membership.respond_to?(:participant_id=)

  if membership.changed? && (!closed? || membership.persisted?)
    begin
      membership.save!
    rescue ActiveRecord::RecordNotUnique
      membership = memberships.find_by(participant.where_values)
    end
  end

  membership.try(:variant) || control
end