simba.read_csv

simba.read_csv(filename: PathLike | Iterator[str], delimiter: str | None = ',', first_column_names: bool | None = None, dtype: str = 'float32') AnnData[source]

Read .csv file.

Same as read_text() but with default delimiter ‘,’.

Parameters:
  • filename – Data file.

  • delimiter – Delimiter that separates data within text file. If None, will split at arbitrary number of white spaces, which is different from enforcing splitting at single white space ‘ ‘.

  • first_column_names – Assume the first column stores row names.

  • dtype – Numpy data type.