Bilateralrsvp simple
In [ ]:
Copied!
from sweetbean.block import Block
from sweetbean.experiment import Experiment
from sweetbean.stimulus import BilateralRSVP
from sweetbean.block import Block
from sweetbean.experiment import Experiment
from sweetbean.stimulus import BilateralRSVP
In [ ]:
Copied!
# -------------------------
# VARIANT 7 — Fix distractor side to LEFT (override opposite-side default)
# -------------------------
bi_rsvp = BilateralRSVP(
left=["a", "b", "c"],
right=[1, 2, 3],
target_side="left",
target_index=2,
target_shape="circle", # per-trial circle/square from table
distractor_shape="square",
stimulus_duration=200,
isi=40,
choices="NO_KEYS",
)
block = Block([bi_rsvp])
# -------------------------
# VARIANT 7 — Fix distractor side to LEFT (override opposite-side default)
# -------------------------
bi_rsvp = BilateralRSVP(
left=["a", "b", "c"],
right=[1, 2, 3],
target_side="left",
target_index=2,
target_shape="circle", # per-trial circle/square from table
distractor_shape="square",
stimulus_duration=200,
isi=40,
choices="NO_KEYS",
)
block = Block([bi_rsvp])
In [ ]:
Copied!
exp = Experiment(
[
block,
]
)
exp = Experiment(
[
block,
]
)
In [ ]:
Copied!
exp.to_html("bilateralrsvp_simple.html")
exp.to_html("bilateralrsvp_simple.html")