This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Run a simulation of multiple concurrent A/B tests acting on a number of users. | |
Reports on the expected vs. the actual results, and raises a warning if the actual results would lead to the wrong conclusion. | |
Values of interest: | |
-- number_of_users : active users who may be part of an A/B test | |
-- number_of_concurrent_experiments: how many random concurrent experiments to generate | |
-- values in construct_random_experiments(): define a range and distribution for utility and B cohort percentage for each experiment | |
""" | |
import random | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CCParticleSystemAnimation.m | |
// TapZoo | |
// | |
// Created by alan fineberg on 4/20/11. | |
// Copyright 2011 Streetview Labs. All rights reserved. | |
// | |
#import "CCParticleSystemAnimation.h" | |
@implementation CCParticleSystemAnimation |
NewerOlder