Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 374 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 374 Bytes

Counterbalancing

Library for implementing counterbalancing for web-based experiments

How to create an experiment with a color variable and a shape variable

e = Experiment()
e.add_param("color", uniformChoice(choices = ["blue", "green"]))
e.add_param("shape", conditionedRoundRobin(choices = ["square", "circle"]), ["color"]))
e.create_table(10)