Getting Daily Visitors for A/B Test Sample Size Estimation
I'd like to get peoples opinions on what methods you use to estimate your sample size for A/B tests. In the table below I've got a column for unique visitors, and then two methods of getting visitors per day.
The first is using the "mean" function and it works by essentially summing up all of the individual rows and then dividing by the number of rows. The issue with this is visitors can get double counted (if they visit more than once in the time period or if their visit spans multiple days).
The second is dividing unique visitors by a count distinct of days and it works by diving the deduplicated total by the number of days. The issue with this is that it can give a daily visitor number that is lower than any single day total (because it's likely you'll have customers visiting more than once, especially for longer time periods).

So my question is - which of these methods do you use to estimate your daily sample size for A/B tests? Or do you use a different method?
