Timestream.to_pandas

Timestream.to_pandas(results=None, *, row_limit=None)

Execute the TimeStream with the given options and return a DataFrame.

Parameters:
  • results (Optional[Union[History, Snapshot]], default: None)

    The results to produce in the DataFrame. Defaults to History() producing all points.

  • row_limit (Optional[int], default: None)

    The maximum number of rows to return. Defaults to None for no limit.

See Also
  • preview: For quick peeks at the contents of a TimeStream during development. - write: For writing results to supported destinations without passing through Pandas. - run_iter: For non-blocking (iterator or async iterator) execution.