Python 中有哪些 A/B 对比测试资源?
Rails 有多个 A/B 分割测试模块/插件。
http://github.com/paulmars/seven_minute_abs
http://www.bingocardcreator.com/abingo
http://vanity.labnotes.org/
?
Python有类似的东西吗
There are several A/B split testing modules/plugins for Rails.
http://github.com/paulmars/seven_minute_abs
http://www.bingocardcreator.com/abingo
http://vanity.labnotes.org/
etc.
Is there anything similar for Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
目前只有 0.1.2 版本,但 Swab 看起来很有前途。测试表单按钮的两种尺寸的示例:
It's only at version 0.1.2 so far, but Swab looks promising. Example of testing two sizes of a form button:
我想我来晚了一点——但如果你能原谅这个无耻的插件,请查看 Dabble ,我自己的 A/B 框架。它非常适合使用基于类的视图的 Web 框架,支持文件系统或 mongodb 存储,并为您生成结果。
I guess I'm a little late to the party -- but if you'll forgive the shameless plug, please check out Dabble, my own A/B framework. It works quite nicely for web frameworks using class-based views, supports filesystem or mongodb storage, and generates results for you.
您可以查看 SimpleAB 库。它是一个非常简单但灵活的工具,用于在 A/B 测试中组织内容。目前SimpleAB有几种创建测试类的方法:
实际上,该库还没有对数据存储和分析设施的可靠支持,但它允许快速实现这些东西。我认为很快就会完成:)
You can look at SimpleAB library. It's pretty simple but flexible tool to organize your content in A/B test. Currently SimpleAB has several ways to create test class:
Actually the lib doesn't have solid support for data storage and analytic facilities yet, but it allows to implement this stuff quickly. That I think will be done soon :)