'RawCNT' object has no attribute 'make_fixed_length_epochs'

  • MNE version: 1.6.0
  • operating system: macOS 13.5.2 (MBP 2021 with M1 Pro)

I am working with NeuroScan .CNT file and need to make fixed length epochs (1-sec) from a 1-min resting-state data segment. I came across the error of " ‘RawCNT’ object has no attribute ‘make_fixed_length_epochs’ ". Is there a way for me to achieve similar functions with .CNT data? Thanks!

1 Like

Hello and welcome to the forum!
You must use mne.make_fixed_length_epochs().

Best wishes,
Richard

1 Like

To better understand the error, you tried to use this function as a method, raw.make_fixed_length_epochs. You should read about the difference between both.

Mathieu

Thanks for the kind replies! Now I understand the logic.