电子邮件营销活动 AB 测试的显着性检验 - MySQL 中的数据

发布于 2025-01-13 16:55:36 字数 292 浏览 3 评论 0原文

我有 50,000 个电子邮件 ID,平均分为 A 组和 B 组。 一封电子邮件会发送给两个不同主题的组。 打开率如下:

Group | Emails_Opened | Total Emails | Open Rate
A     |  24332        |  34471       | 70.5869% 
B     |  24020        |  33761       | 71.1427%

我应该运行哪种显着性检验来确保结果具有统计显着性以及如何运行? 数据位于 SQL 数据库中。

I have 50,000 email ids divided into Group A and Group B equally.
An email is sent to both groups with different subject.
The Open Rate is as follows:

Group | Emails_Opened | Total Emails | Open Rate
A     |  24332        |  34471       | 70.5869% 
B     |  24020        |  33761       | 71.1427%

Which significance test should I run to make sure the results are statistically significant and how?
The data is in SQL database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小兔几 2025-01-20 16:55:36

因此,您填写列总计和行总计,然后每个期望值是

<corresponding column total>*<corresponding row total>/<grand total>

例如

=B$4*$D2/$D$4

输入图片此处描述

然后使用

=CHISQ.TEST(B2:C3,F2:G3)

So you fill in the column totals and row totals, then each expected value is

<corresponding column total>*<corresponding row total>/<grand total>

e.g.

=B$4*$D2/$D$4

enter image description here

Then use

=CHISQ.TEST(B2:C3,F2:G3)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文