Split

参考:

splitrb/split: The Rack Based A/B testing framework – GitHub

ドキュメント

参考:

Documentation for split | RubyDoc.info

概要

参考:

Rails A/B testing by split gem – SlideShare

使い方

ビューで A/B テストを行う。

<% ab_test(
     :button, "button_A.png", "button_B.png"
   ) do |button| %>
  <%= image_tag button %>
<% end %>

コントローラーでパラメータを与える。

@var = ab_test(:var, 100, 200)

コンバージョンを計測する。

def complete
  ab_finished(:test_name)
end

参考:

ruby on rails で A/B test | lxyuma BLOG

split を使って Rails で簡単 AB テスト | しめ鯖日記

ab_test

参考:

Method: Split::Helper.ab_test — Documentation for split | RubyDoc.info

ab_test – split/helper.rb at v3.3.2 · splitrb/split – GitHub

ab_finished

参考:

Method: Split::Helper.ab_finished — Documentation for split | RubyDoc.info

ab_finished – split/helper.rb at v3.3.2 · splitrb/split – GitHub

algorithm

参考:

Algorithms – splitrb/split – GitHub

Method: Split::Experiment#algorithm= — Documentation for split | RubyDoc.info

Method: Split::Configuration#algorithm= — Documentation for split | RubyDoc.info

Module: Split::Algorithms — Documentation for split | RubyDoc.info

@algorithm – split/configuration.rb at v3.3.2 · splitrb/split – GitHub

記事をシェアする:
タグ:

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

Protected by reCAPTCHA