-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evaluations #15
Comments
Hi @pkelleter Usually evaluation of results is responsibility of data analysts, not developers: my side of the job is to make sure that the AB tests is implemented correctly and cleanly, and that no false positives or analysis failures can be blamed on how the test is implemented. So, I am not going to develop an evaluation tool, also because there are plenty out there (Google Optimize, Optimizely, etc). However, I have been exposed a lot to evaluation tools in the past, so I can give some recommendations. Another person happened to ask me the same question via email a couple of months ago, I'll paste here my reply; I hope it's helpful for you, if you have more specific questions please feel free to ask. February mail with instructions about how to setup UA+GTM
|
@adrdilauro I think what OP was originally trying to ask how can we report the results from angular-ab-tests to any of existing ab testing reporting platforms? The current documentation doesn't mention any reporting whatsoever, so it's a little unclear whether there's any support for this in the library or it should be handled individually |
No, there is no support for reporting data in the library: the library is only meant to be used for the implementation of the test, as I said, the analytics part of it has to be handled by one of the available platforms. The module On Google Tag Manager + Universal Analytics + Google Optimize, it's possible (and quite simple) to read the value of the cookie and pick up the analysis from there. I don't think the pattern followed by GTM + UA + Google Optimize is something crazy, I believe it quite reasonable that other platforms should let you do a similar thing. I only know products from the Google world though, I wouldn't swear about other platforms. I hope this explanation is clear. Since so many people are asking about it, I should probably be more explicit in the documentation. If you have any further doubts, again, I cannot suggest anything better than following the blog of Simo Ahava, he is the best expert I know on the analytics side. |
hey,
first of all thanks for your work, this project seems promising to me, since so far A/B testing in SPAs often turns out to be painful.
anyhow, i do not see any kind of evaluation tools coming with your solution. are you planning to build such things - or do you have any proposal on how to tackle this issue otherwise?
thing is - A/B testing without a "result" of the test (what performed better? A or B?) is pretty much pointless in the first place :D
thanks in advance, keep up the good work 👍
The text was updated successfully, but these errors were encountered: