本文整理汇总了Python中mne.Epochs.as_data_frame方法的典型用法代码示例。如果您正苦于以下问题:Python Epochs.as_data_frame方法的具体用法?Python Epochs.as_data_frame怎么用?Python Epochs.as_data_frame使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mne.Epochs
的用法示例。
在下文中一共展示了Epochs.as_data_frame方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_as_data_frame
# 需要导入模块: from mne import Epochs [as 别名]
# 或者: from mne.Epochs import as_data_frame [as 别名]
def test_as_data_frame():
"""Test epochs Pandas exporter"""
epochs = Epochs(raw, events, {'a': 1, 'b': 2}, tmin, tmax, picks=picks)
assert_raises(ValueError, epochs.as_data_frame, index=['foo', 'bar'])
assert_raises(ValueError, epochs.as_data_frame, index='qux')
assert_raises(ValueError, epochs.as_data_frame, np.arange(400))
df = epochs.as_data_frame()
data = np.hstack(epochs.get_data())
assert_true((df.columns == epochs.ch_names).all())
assert_array_equal(df.values[:, 0], data[0] * 1e13)
assert_array_equal(df.values[:, 2], data[2] * 1e15)
for ind in ['time', ['condition', 'time'], ['condition', 'time', 'epoch']]:
df = epochs.as_data_frame(index=ind)
assert_true(df.index.names == ind if isinstance(ind, list) else [ind])
示例2: test_as_data_frame
# 需要导入模块: from mne import Epochs [as 别名]
# 或者: from mne.Epochs import as_data_frame [as 别名]
def test_as_data_frame():
"""Test Pandas exporter"""
epochs = Epochs(raw, events, {'a': 1, 'b': 2}, tmin, tmax, picks=picks)
assert_raises(ValueError, epochs.as_data_frame, index=['foo', 'bar'])
assert_raises(ValueError, epochs.as_data_frame, index='qux')
assert_raises(ValueError, epochs.as_data_frame, np.arange(400))
df = epochs.as_data_frame()
data = np.hstack(epochs.get_data())
assert_true((df.columns[1:] == epochs.ch_names).all())
assert_true(df.index.names == ['epoch', 'time'])
assert_array_equal(df.values[:, 1], data[0] * 1e13)
assert_array_equal(df.values[:, 3], data[2] * 1e15)