eelbrain.pipeline.MneExperiment.show_file_status_mult

MneExperiment.show_file_status_mult(files, fields, count=True, present='X', absent='-', **kwargs)

Compile a table about the existence of multiple files

Parameters:
  • files (str | list of str) – The names of the path templates whose existence to list.

  • fields (str | list of str) – The names of the variables for which to list files (i.e., for each unique combination of fields, list files).

  • count (bool) – Add a column with a number for each subject.

  • present (str) – String to display when a given file is present.

  • absent (str) – String to display when a given file is absent.

Examples

>>> e.show_file_status_mult(['raw-file', 'trans-file', 'fwd-file'],
... 'subject')
     Subject   Raw-file   Trans-file   Fwd-file
-----------------------------------------------
 0   AD001     X          X            X
 1   AD002     X          X            X
 2   AD003     X          X            X
...