You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this Subject object would have a set of methods to allow the behavioral protocol to save &/or query data
# define a subject
subj = Subject(name='B999',datastore='csv',datadir='/home/user/data')
# save a trial using whatever datastore the subject is using. csv? mongodb?
subj.save_trial(trial_object)
# query the accuracy over the past hundred trials
recent_acc = subj.data[-100:]['correct'].mean()
The text was updated successfully, but these errors were encountered:
this Subject object would have a set of methods to allow the behavioral protocol to save &/or query data
The text was updated successfully, but these errors were encountered: