Using the experiment queue
Basic workflow
1
import causalchamber.lab as lab
rlab = lab.Lab(credentials_file = 'path/to/file')import os
import causalchamber.lab as lab
rlab = lab.Lab(credentials=(os.getenv('USER'), os.getenv('KEY')))2
experiment = rlab.new_experiment(chamber_id, config)3
experiment.set(target, value)experiment.measure(n, delay)experiment.wait(milliseconds)4
experiment.submit(tag='optional-tag')Monitoring your experiments
rlab.get_experiments(print_max=10) # 0 for no print, None to print all
Checking your position in the queue

Cancelling an experiment
Downloading the data
A complete example


Generating instructions from a pandas dataframe
Last updated