pysyncrosim.project.Project.save_datasheet

Project.save_datasheet(name, data, append=True, force=False)

Saves a Project-scoped Datasheet.

Parameters:
  • name (String) – Name of Datasheet to save.

  • data (pandas.DataFrame) – DataFrame to save as Datasheet.

  • append (Logical, optional) – If True, appends to existing Datasheet. If False, then the user must also specify force=True to overwrite the existing Datasheet. The default is True.

  • force (Logical, optional) – If True, overwrites existing Datasheet. The user should be aware that this may also delete other definitions and results, so this argument should be used with care. The default is False.

Return type:

None.