예제 #1
0
파일: test_rerp.py 프로젝트: rerpy/rerpy
def test_diff_lengths():
    # Originally this caused by-epoch regression to blow up
    ds = mock_dataset(hz=1000)
    ds.add_event(0, 10, 11, {"type": "a"})
    ds.add_event(0, 20, 21, {"type": "a"})
    ds.add_event(0, 30, 31, {"type": "b"})
    ds.add_event(0, 40, 41, {"type": "b"})

    req_a = rERPRequest("type == 'a'", -1, 3, "1")
    req_b = rERPRequest("type == 'b'", -2, 4, "1")

    epoch_a1 = np.asarray(ds[0].iloc[10 - 1:10 + 4, :])
    epoch_a2 = np.asarray(ds[0].iloc[20 - 1:20 + 4, :])
    epoch_b1 = np.asarray(ds[0].iloc[30 - 2:30 + 5, :])
    epoch_b2 = np.asarray(ds[0].iloc[40 - 2:40 + 5, :])

    expected_a = (epoch_a1 + epoch_a2) / 2
    expected_b = (epoch_b1 + epoch_b2) / 2

    for regression_strategy in ["by-epoch", "continuous"]:
        a_alone, = ds.multi_rerp([req_a],
                                 regression_strategy=regression_strategy)
        b_alone, = ds.multi_rerp([req_b],
                                 regression_strategy=regression_strategy)
        a, b = ds.multi_rerp([req_a, req_b],
                             regression_strategy=regression_strategy)
        assert np.allclose(expected_a, a_alone.betas)
        assert np.allclose(expected_b, b_alone.betas)
        assert np.allclose(expected_a, a.betas)
        assert np.allclose(expected_b, b.betas)
예제 #2
0
파일: test_rerp.py 프로젝트: kingjr/rerpy
def test_diff_lengths():
    # Originally this caused by-epoch regression to blow up
    ds = mock_dataset(hz=1000)
    ds.add_event(0, 10, 11, {"type": "a"})
    ds.add_event(0, 20, 21, {"type": "a"})
    ds.add_event(0, 30, 31, {"type": "b"})
    ds.add_event(0, 40, 41, {"type": "b"})

    req_a = rERPRequest("type == 'a'", -1, 3, "1")
    req_b = rERPRequest("type == 'b'", -2, 4, "1")

    epoch_a1 = np.asarray(ds[0].iloc[10 - 1:10 + 4, :])
    epoch_a2 = np.asarray(ds[0].iloc[20 - 1:20 + 4, :])
    epoch_b1 = np.asarray(ds[0].iloc[30 - 2:30 + 5, :])
    epoch_b2 = np.asarray(ds[0].iloc[40 - 2:40 + 5, :])

    expected_a = (epoch_a1 + epoch_a2) / 2
    expected_b = (epoch_b1 + epoch_b2) / 2

    for regression_strategy in ["by-epoch", "continuous"]:
        a_alone, = ds.multi_rerp([req_a],
                                 regression_strategy=regression_strategy)
        b_alone, = ds.multi_rerp([req_b],
                                 regression_strategy=regression_strategy)
        a, b = ds.multi_rerp([req_a, req_b],
                             regression_strategy=regression_strategy)
        assert np.allclose(expected_a, a_alone.betas)
        assert np.allclose(expected_b, b_alone.betas)
        assert np.allclose(expected_a, a.betas)
        assert np.allclose(expected_b, b.betas)
예제 #3
0
 def rerp(
         self,
         # rERPRequest arguments
         event_query,
         start_time,
         stop_time,
         formula,
         name=None,
         eval_env=0,
         bad_event_query=None,
         all_or_nothing=False,
         # multi_rerp arguments
         artifact_query="has _ARTIFACT_TYPE",
         artifact_type_field="_ARTIFACT_TYPE",
         overlap_correction=True,
         regression_strategy="auto",
         verbose=True):
     eval_env = EvalEnvironment.capture(eval_env, reference=1)
     request = rERPRequest(event_query,
                           start_time,
                           stop_time,
                           formula,
                           name=name,
                           eval_env=eval_env,
                           bad_event_query=bad_event_query,
                           all_or_nothing=all_or_nothing)
     rerps = self.multi_rerp([request],
                             artifact_query=artifact_query,
                             artifact_type_field=artifact_type_field,
                             overlap_correction=overlap_correction,
                             regression_strategy=regression_strategy,
                             verbose=verbose)
     assert len(rerps) == 1
     return rerps[0]
예제 #4
0
파일: test_rerp.py 프로젝트: rerpy/rerpy
def test_perfect_collinearity():
    ds = mock_dataset(hz=1000)
    ds.add_event(0, 10, 11, {"x1": 1, "x2": 1, "type": "a"})
    ds.add_event(0, 20, 21, {"x1": 2, "x2": 2, "type": "a"})
    ds.add_event(0, 30, 31, {"x1": 3, "x2": 3, "type": "b"})
    ds.add_event(0, 40, 41, {"x1": 4, "x2": 4, "type": "b"})

    for regression_strategy in ["by-epoch", "continuous"]:
        # two predictors that are identical
        assert_raises(ValueError,
                      ds.rerp, "has x1", 0, 5, "x1 + x2",
                      regression_strategy=regression_strategy)
        # two predictors that are *almost* identical
        assert_raises(ValueError,
                      ds.multi_rerp,
                      # Call rERPRequest here to get correct evaluation
                      # environment for formula.
                      [rERPRequest("has x1", 0, 5,
                                   "x1 + I(x2 + np.finfo(float).eps)")],
                      regression_strategy=regression_strategy)
        # missing data in some cell
        assert_raises(ValueError,
                      ds.rerp, "has x1", 0, 5, "type",
                      bad_event_query="type == 'a'")
        assert_raises(ValueError,
                      ds.rerp, "has x1", 0, 5, "type",
                      bad_event_query="type == 'b'")
        assert_raises(ValueError,
                      ds.rerp, "has x1", 0, 5, "0 + type",
                      bad_event_query="type == 'a'")
        assert_raises(ValueError,
                      ds.rerp, "has x1", 0, 5, "0 + type",
                      bad_event_query="type == 'b'")
예제 #5
0
파일: test_rerp.py 프로젝트: kingjr/rerpy
def test_perfect_collinearity():
    ds = mock_dataset(hz=1000)
    ds.add_event(0, 10, 11, {"x1": 1, "x2": 1, "type": "a"})
    ds.add_event(0, 20, 21, {"x1": 2, "x2": 2, "type": "a"})
    ds.add_event(0, 30, 31, {"x1": 3, "x2": 3, "type": "b"})
    ds.add_event(0, 40, 41, {"x1": 4, "x2": 4, "type": "b"})

    for regression_strategy in ["by-epoch", "continuous"]:
        # two predictors that are identical
        assert_raises(ValueError,
                      ds.rerp,
                      "has x1",
                      0,
                      5,
                      "x1 + x2",
                      regression_strategy=regression_strategy)
        # two predictors that are *almost* identical
        assert_raises(
            ValueError,
            ds.multi_rerp,
            # Call rERPRequest here to get correct evaluation
            # environment for formula.
            [rERPRequest("has x1", 0, 5, "x1 + I(x2 + np.finfo(float).eps)")],
            regression_strategy=regression_strategy)
        # missing data in some cell
        assert_raises(ValueError,
                      ds.rerp,
                      "has x1",
                      0,
                      5,
                      "type",
                      bad_event_query="type == 'a'")
        assert_raises(ValueError,
                      ds.rerp,
                      "has x1",
                      0,
                      5,
                      "type",
                      bad_event_query="type == 'b'")
        assert_raises(ValueError,
                      ds.rerp,
                      "has x1",
                      0,
                      5,
                      "0 + type",
                      bad_event_query="type == 'a'")
        assert_raises(ValueError,
                      ds.rerp,
                      "has x1",
                      0,
                      5,
                      "0 + type",
                      bad_event_query="type == 'b'")
예제 #6
0
파일: data.py 프로젝트: rerpy/rerpy
 def rerp(self,
          # rERPRequest arguments
          event_query, start_time, stop_time, formula,
          name=None, eval_env=0, bad_event_query=None,
          all_or_nothing=False,
          # multi_rerp arguments
          artifact_query="has _ARTIFACT_TYPE",
          artifact_type_field="_ARTIFACT_TYPE",
          overlap_correction=True,
          regression_strategy="auto",
          verbose=True):
     eval_env = EvalEnvironment.capture(eval_env, reference=1)
     request = rERPRequest(event_query, start_time, stop_time, formula,
                           name=name, eval_env=eval_env,
                           bad_event_query=bad_event_query,
                           all_or_nothing=all_or_nothing)
     rerps = self.multi_rerp([request],
                             artifact_query=artifact_query,
                             artifact_type_field=artifact_type_field,
                             overlap_correction=overlap_correction,
                             regression_strategy=regression_strategy,
                             verbose=verbose)
     assert len(rerps) == 1
     return rerps[0]
예제 #7
0
파일: test_rerp.py 프로젝트: rerpy/rerpy
def test_multi_rerp():
    ds = mock_dataset(num_channels=2, hz=1000)
    ds.add_event(0, 10, 11, {"type": "standard"})
    ds.add_event(0, 20, 21, {"type": "standard"})
    ds.add_event(0, 30, 31, {"type": "target"})
    ds.add_event(0, 40, 41, {"type": "target"})
    ds.add_event(0, 50, 51, {"type": "target"})
    ds.add_event(0, 51, 53, {"maybe_artifact": True})

    for (regression_strategy, overlap_correction) in product(
        ["auto", "by-epoch", "continuous"],
        [True, False],
        ):
        assert ds.multi_rerp([],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction) == []

        standard_req = rERPRequest("type == 'standard'", -2, 4, "~ 1")
        target_req = rERPRequest("type == 'target'", -2, 4, "~ 1")
        erps = ds.multi_rerp([standard_req, target_req],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction)
        standard_erp, target_erp = erps
        assert standard_erp.event_query == "type == 'standard'"
        assert target_erp.event_query == "type == 'target'"
        for i, erp in enumerate([standard_erp, target_erp]):
            assert erp.start_time == -2
            assert erp.stop_time == 4
            assert erp.formula == "~ 1"
            assert erp.bad_event_query is None
            assert erp.all_or_nothing == False
            assert erp.data_format is ds.data_format
            assert erp.design_info.column_names == ["Intercept"]
            assert erp.start_tick == -2
            assert erp.stop_tick == 5
            assert erp.ticks == 7
            assert erp.this_rerp_index == i
            assert erp.total_rerps == 2
            assert erp.global_stats.epochs.fully_accepted == 5
            assert erp.global_stats.ticks.requested == 5 * 7
            assert erp.this_rerp_stats.epochs.fully_accepted in (2, 3)
            if regression_strategy == "auto":
                assert erp.regression_strategy == "by-epoch"
            else:
                assert erp.regression_strategy == regression_strategy
            assert erp.overlap_correction == overlap_correction
            assert isinstance(erp.betas, pandas.Panel)
            assert erp.betas.shape == (1, 7, 2)
            assert np.all(erp.betas.items == ["Intercept"])
            assert np.all(erp.betas.major_axis == [-2, -1, 0, 1, 2, 3, 4])
            assert np.all(erp.betas.minor_axis == ["MOCK0", "MOCK1"])
        standard_epoch0 = np.asarray(ds[0].iloc[10 - 2:10 + 5, :])
        standard_epoch1 = np.asarray(ds[0].iloc[20 - 2:20 + 5, :])
        target_epoch0 = np.asarray(ds[0].iloc[30 - 2:30 + 5, :])
        target_epoch1 = np.asarray(ds[0].iloc[40 - 2:40 + 5, :])
        target_epoch2 = np.asarray(ds[0].iloc[50 - 2:50 + 5, :])
        assert np.allclose(standard_erp.betas["Intercept"],
                           (standard_epoch0 + standard_epoch1) / 2.0)
        assert np.allclose(target_erp.betas["Intercept"],
                           (target_epoch0 + target_epoch1 + target_epoch2)
                           / 3.0)

        ################

        both_req = rERPRequest("has type", -2, 4, formula="~ type")
        erps = ds.multi_rerp([both_req],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction)
        both_erp, = erps
        assert both_erp.event_query == "has type"
        assert both_erp.start_time == -2
        assert both_erp.stop_time == 4
        assert both_erp.formula == "~ type"
        assert both_erp.bad_event_query is None
        assert both_erp.all_or_nothing == False
        assert both_erp.data_format is ds.data_format
        assert both_erp.design_info.column_names == ["Intercept",
                                                     "type[T.target]"]
        assert both_erp.start_tick == -2
        assert both_erp.stop_tick == 5
        assert both_erp.ticks == 7
        assert both_erp.this_rerp_index == 0
        assert both_erp.total_rerps == 1
        assert both_erp.global_stats.epochs.fully_accepted == 5
        assert both_erp.global_stats.ticks.requested == 5 * 7
        assert both_erp.this_rerp_stats.epochs.fully_accepted == 5
        if regression_strategy == "auto":
            assert both_erp.regression_strategy == "by-epoch"
        else:
            assert both_erp.regression_strategy == regression_strategy
        assert both_erp.overlap_correction == overlap_correction
        assert isinstance(both_erp.betas, pandas.Panel)
        assert both_erp.betas.shape == (2, 7, 2)
        assert np.all(both_erp.betas.items == ["Intercept", "type[T.target]"])
        assert np.all(both_erp.betas.major_axis == [-2, -1, 0, 1, 2, 3, 4])
        assert np.all(both_erp.betas.minor_axis == ["MOCK0", "MOCK1"])
        standard_epoch0 = np.asarray(ds[0].iloc[10 - 2:10 + 5, :])
        standard_epoch1 = np.asarray(ds[0].iloc[20 - 2:20 + 5, :])
        target_epoch0 = np.asarray(ds[0].iloc[30 - 2:30 + 5, :])
        target_epoch1 = np.asarray(ds[0].iloc[40 - 2:40 + 5, :])
        target_epoch2 = np.asarray(ds[0].iloc[50 - 2:50 + 5, :])
        standard_avg = (standard_epoch0 + standard_epoch1) / 2.0
        target_avg = (target_epoch0 + target_epoch1 + target_epoch2) / 3.0
        assert np.allclose(both_erp.betas["Intercept"], standard_avg)
        assert np.allclose(both_erp.betas["type[T.target]"],
                           target_avg - standard_avg)

        ################

        both_req2 = rERPRequest("has type", -2, 4, formula="~ 0 + type")
        erps = ds.multi_rerp([both_req2],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction)
        both_erp2, = erps
        assert both_erp2.design_info.column_names == ["type[standard]",
                                                      "type[target]"]
        assert np.allclose(both_erp2.betas["type[standard]"], standard_avg)
        assert np.allclose(both_erp2.betas["type[target]"], target_avg)

        ################
        # regular artifact (check accounting)
        if regression_strategy == "by-epoch":
            assert_raises(ValueError, ds.multi_rerp, [both_req2],
                          artifact_query="has maybe_artifact",
                          regression_strategy=regression_strategy,
                          overlap_correction=overlap_correction)
        else:
            both_erp3, = ds.multi_rerp([both_req2],
                                       artifact_query="has maybe_artifact",
                                       regression_strategy=regression_strategy,
                                       overlap_correction=overlap_correction)
            assert both_erp3.regression_strategy == "continuous"
            assert both_erp3.global_stats.epochs.requested == 5
            assert both_erp3.global_stats.epochs.fully_accepted == 4
            assert both_erp3.global_stats.epochs.partially_accepted == 1
            assert both_erp3.global_stats.ticks.rejected == 2
            assert np.allclose(both_erp3.betas["type[standard]"],
                               standard_avg)
            target_2avg = (target_epoch0 + target_epoch1) / 2.0
            target_art_avg = target_avg.copy()
            # starts 1 tick past timelock event, which itself is 2 ticks into
            # epoch, and continues for 2 ticks
            assert both_erp3.start_tick == -2
            art_span = slice(2 + 1, 2 + 1 + 2)
            target_art_avg[art_span, :] = target_2avg[art_span, :]
            assert np.allclose(both_erp3.betas["type[target]"],
                               target_art_avg)

        ################
        # all or nothing
        both_req4 = rERPRequest("has type", -2, 4, formula="~ 0 + type",
                                all_or_nothing=True)
        both_erp4, = ds.multi_rerp([both_req4],
                                   artifact_query="has maybe_artifact",
                                   regression_strategy=regression_strategy,
                                   overlap_correction=overlap_correction)
        if regression_strategy == "auto":
            assert both_erp4.regression_strategy == "by-epoch"
        assert np.allclose(both_erp4.betas["type[standard]"],
                           standard_avg)
        assert np.allclose(both_erp4.betas["type[target]"],
                           (target_epoch0 + target_epoch1) / 2.0)

        ################
        # bad_event_query
        both_req5 = rERPRequest("has type", -2, 4, formula="~ 0 + type",
                                bad_event_query="_START_TICK == 20")
        if regression_strategy == "by-epoch":
            assert_raises(ValueError, ds.multi_rerp, [both_req5],
                          artifact_query="has maybe_artifact",
                          regression_strategy=regression_strategy,
                          overlap_correction=overlap_correction)
        else:
            both_erp5, = ds.multi_rerp([both_req5],
                                       artifact_query="has maybe_artifact",
                                       regression_strategy=regression_strategy,
                                       overlap_correction=overlap_correction)
            assert both_erp5.regression_strategy == "continuous"
            # standard_epoch1 is knocked out by bad_event_query
            assert np.allclose(both_erp5.betas["type[standard]"],
                               standard_epoch0)
            # plus there's an artifact knocking out part of target_epoch2
            assert np.allclose(both_erp5.betas["type[target]"],
                               target_art_avg)
예제 #8
0
파일: test_rerp.py 프로젝트: kingjr/rerpy
def test_multi_rerp():
    ds = mock_dataset(num_channels=2, hz=1000)
    ds.add_event(0, 10, 11, {"type": "standard"})
    ds.add_event(0, 20, 21, {"type": "standard"})
    ds.add_event(0, 30, 31, {"type": "target"})
    ds.add_event(0, 40, 41, {"type": "target"})
    ds.add_event(0, 50, 51, {"type": "target"})
    ds.add_event(0, 51, 53, {"maybe_artifact": True})

    for (regression_strategy, overlap_correction) in product(
        ["auto", "by-epoch", "continuous"],
        [True, False],
    ):
        assert ds.multi_rerp([],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction) == []

        standard_req = rERPRequest("type == 'standard'", -2, 4, "~ 1")
        target_req = rERPRequest("type == 'target'", -2, 4, "~ 1")
        erps = ds.multi_rerp([standard_req, target_req],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction)
        standard_erp, target_erp = erps
        assert standard_erp.event_query == "type == 'standard'"
        assert target_erp.event_query == "type == 'target'"
        for i, erp in enumerate([standard_erp, target_erp]):
            assert erp.start_time == -2
            assert erp.stop_time == 4
            assert erp.formula == "~ 1"
            assert erp.bad_event_query is None
            assert erp.all_or_nothing == False
            assert erp.data_format is ds.data_format
            assert erp.design_info.column_names == ["Intercept"]
            assert erp.start_tick == -2
            assert erp.stop_tick == 5
            assert erp.ticks == 7
            assert erp.this_rerp_index == i
            assert erp.total_rerps == 2
            assert erp.global_stats.epochs.fully_accepted == 5
            assert erp.global_stats.ticks.requested == 5 * 7
            assert erp.this_rerp_stats.epochs.fully_accepted in (2, 3)
            if regression_strategy == "auto":
                assert erp.regression_strategy == "by-epoch"
            else:
                assert erp.regression_strategy == regression_strategy
            assert erp.overlap_correction == overlap_correction
            assert isinstance(erp.betas, pandas.Panel)
            assert erp.betas.shape == (1, 7, 2)
            assert np.all(erp.betas.items == ["Intercept"])
            assert np.all(erp.betas.major_axis == [-2, -1, 0, 1, 2, 3, 4])
            assert np.all(erp.betas.minor_axis == ["MOCK0", "MOCK1"])
        standard_epoch0 = np.asarray(ds[0].iloc[10 - 2:10 + 5, :])
        standard_epoch1 = np.asarray(ds[0].iloc[20 - 2:20 + 5, :])
        target_epoch0 = np.asarray(ds[0].iloc[30 - 2:30 + 5, :])
        target_epoch1 = np.asarray(ds[0].iloc[40 - 2:40 + 5, :])
        target_epoch2 = np.asarray(ds[0].iloc[50 - 2:50 + 5, :])
        assert np.allclose(standard_erp.betas["Intercept"],
                           (standard_epoch0 + standard_epoch1) / 2.0)
        assert np.allclose(target_erp.betas["Intercept"],
                           (target_epoch0 + target_epoch1 + target_epoch2) /
                           3.0)

        ################

        both_req = rERPRequest("has type", -2, 4, formula="~ type")
        erps = ds.multi_rerp([both_req],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction)
        both_erp, = erps
        assert both_erp.event_query == "has type"
        assert both_erp.start_time == -2
        assert both_erp.stop_time == 4
        assert both_erp.formula == "~ type"
        assert both_erp.bad_event_query is None
        assert both_erp.all_or_nothing == False
        assert both_erp.data_format is ds.data_format
        assert both_erp.design_info.column_names == [
            "Intercept", "type[T.target]"
        ]
        assert both_erp.start_tick == -2
        assert both_erp.stop_tick == 5
        assert both_erp.ticks == 7
        assert both_erp.this_rerp_index == 0
        assert both_erp.total_rerps == 1
        assert both_erp.global_stats.epochs.fully_accepted == 5
        assert both_erp.global_stats.ticks.requested == 5 * 7
        assert both_erp.this_rerp_stats.epochs.fully_accepted == 5
        if regression_strategy == "auto":
            assert both_erp.regression_strategy == "by-epoch"
        else:
            assert both_erp.regression_strategy == regression_strategy
        assert both_erp.overlap_correction == overlap_correction
        assert isinstance(both_erp.betas, pandas.Panel)
        assert both_erp.betas.shape == (2, 7, 2)
        assert np.all(both_erp.betas.items == ["Intercept", "type[T.target]"])
        assert np.all(both_erp.betas.major_axis == [-2, -1, 0, 1, 2, 3, 4])
        assert np.all(both_erp.betas.minor_axis == ["MOCK0", "MOCK1"])
        standard_epoch0 = np.asarray(ds[0].iloc[10 - 2:10 + 5, :])
        standard_epoch1 = np.asarray(ds[0].iloc[20 - 2:20 + 5, :])
        target_epoch0 = np.asarray(ds[0].iloc[30 - 2:30 + 5, :])
        target_epoch1 = np.asarray(ds[0].iloc[40 - 2:40 + 5, :])
        target_epoch2 = np.asarray(ds[0].iloc[50 - 2:50 + 5, :])
        standard_avg = (standard_epoch0 + standard_epoch1) / 2.0
        target_avg = (target_epoch0 + target_epoch1 + target_epoch2) / 3.0
        assert np.allclose(both_erp.betas["Intercept"], standard_avg)
        assert np.allclose(both_erp.betas["type[T.target]"],
                           target_avg - standard_avg)

        ################

        both_req2 = rERPRequest("has type", -2, 4, formula="~ 0 + type")
        erps = ds.multi_rerp([both_req2],
                             regression_strategy=regression_strategy,
                             overlap_correction=overlap_correction)
        both_erp2, = erps
        assert both_erp2.design_info.column_names == [
            "type[standard]", "type[target]"
        ]
        assert np.allclose(both_erp2.betas["type[standard]"], standard_avg)
        assert np.allclose(both_erp2.betas["type[target]"], target_avg)

        ################
        # regular artifact (check accounting)
        if regression_strategy == "by-epoch":
            assert_raises(ValueError,
                          ds.multi_rerp, [both_req2],
                          artifact_query="has maybe_artifact",
                          regression_strategy=regression_strategy,
                          overlap_correction=overlap_correction)
        else:
            both_erp3, = ds.multi_rerp([both_req2],
                                       artifact_query="has maybe_artifact",
                                       regression_strategy=regression_strategy,
                                       overlap_correction=overlap_correction)
            assert both_erp3.regression_strategy == "continuous"
            assert both_erp3.global_stats.epochs.requested == 5
            assert both_erp3.global_stats.epochs.fully_accepted == 4
            assert both_erp3.global_stats.epochs.partially_accepted == 1
            assert both_erp3.global_stats.ticks.rejected == 2
            assert np.allclose(both_erp3.betas["type[standard]"], standard_avg)
            target_2avg = (target_epoch0 + target_epoch1) / 2.0
            target_art_avg = target_avg.copy()
            # starts 1 tick past timelock event, which itself is 2 ticks into
            # epoch, and continues for 2 ticks
            assert both_erp3.start_tick == -2
            art_span = slice(2 + 1, 2 + 1 + 2)
            target_art_avg[art_span, :] = target_2avg[art_span, :]
            assert np.allclose(both_erp3.betas["type[target]"], target_art_avg)

        ################
        # all or nothing
        both_req4 = rERPRequest("has type",
                                -2,
                                4,
                                formula="~ 0 + type",
                                all_or_nothing=True)
        both_erp4, = ds.multi_rerp([both_req4],
                                   artifact_query="has maybe_artifact",
                                   regression_strategy=regression_strategy,
                                   overlap_correction=overlap_correction)
        if regression_strategy == "auto":
            assert both_erp4.regression_strategy == "by-epoch"
        assert np.allclose(both_erp4.betas["type[standard]"], standard_avg)
        assert np.allclose(both_erp4.betas["type[target]"],
                           (target_epoch0 + target_epoch1) / 2.0)

        ################
        # bad_event_query
        both_req5 = rERPRequest("has type",
                                -2,
                                4,
                                formula="~ 0 + type",
                                bad_event_query="_START_TICK == 20")
        if regression_strategy == "by-epoch":
            assert_raises(ValueError,
                          ds.multi_rerp, [both_req5],
                          artifact_query="has maybe_artifact",
                          regression_strategy=regression_strategy,
                          overlap_correction=overlap_correction)
        else:
            both_erp5, = ds.multi_rerp([both_req5],
                                       artifact_query="has maybe_artifact",
                                       regression_strategy=regression_strategy,
                                       overlap_correction=overlap_correction)
            assert both_erp5.regression_strategy == "continuous"
            # standard_epoch1 is knocked out by bad_event_query
            assert np.allclose(both_erp5.betas["type[standard]"],
                               standard_epoch0)
            # plus there's an artifact knocking out part of target_epoch2
            assert np.allclose(both_erp5.betas["type[target]"], target_art_avg)