write_zipfile_np

write_zipfile_np(arr: numpy.typing.ArrayLike, path: str | Path, inner_path: str, **kwargs: Any) None[source]

Write a dataframe to an inner CSV file to a zip archive.

Parameters:
  • arr – Array-like

  • path – The path to the resulting zip archive

  • inner_path – The path inside the zip archive to write the dataframe

  • kwargs – Additional kwargs to pass to get_np_io() and transitively to numpy.save().