pylabrobot.molecular_devices.spectramax.AbsorbanceResult#

class pylabrobot.molecular_devices.spectramax.AbsorbanceResult(data: List[List[float | None]], wavelength: int, temperature: float | None, timestamp: float)#

Bases: object

Result of an absorbance measurement.

Variables:
  • data (List[List[float | None]]) – 2D array indexed [row][col]. None for unmeasured wells.

  • wavelength (int) – Wavelength in nm.

  • temperature (float | None) – Temperature in degrees C, or None if not available.

  • timestamp (float) – Measurement time as reported by the instrument, in seconds.

Parameters:

Attributes

Methods

__init__(data, wavelength, temperature, ...)