| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.streaming.StreamingDataFrame.html | [Back] [Original] |
Section Navigation
Two-dimensional, size-mutable, potentially heterogeneous tabular data.
Data structure also contains labeled axes (rows and columns). Arithmetic operations align on both row and column labels. Can be thought of as a dict-like container for Series objects. The primary pandas data structure.
Note
The bigframes.streaming module is a preview feature, and subject to change.
Currently only supports basic projection, filtering and preview operations.
Gets the specified column(s) from the StreamingDataFrame.
key (index) Index or list of indices. It can be a column label, a list of column labels, a Series of booleans or a pandas Index of desired column labels
Value(s) at the requested index(es).
bigframes.pandas.Series or Any
Converts a StreamingDataFrame to a string. Calls to_pandas.
Only represents the first bigframes.options.display.max_rows.
Modify or insert a column into the StreamingDataFrame.
Note
This does not modify the original table the StreamingDataFrame was derived from.
key (column index) It can be a new column to be inserted, or an existing column to be modified.
value (scalar, Sequence, StreamingDataFrame, or Series) Value to be assigned to the column
Rename columns.
Dict values must be unique (1-to-1). Labels not contained in a dict will be left as-is. Extra labels listed dont throw an error.
columns (Mapping) Dict-like from old column labels to new column labels.
inplace (bool) Default False. Whether to modify the StreamingDataFrame rather than creating a new one.
StreamingDataFrame with the renamed axis labels or None if inplace=True.
bigframes.pandas.DataFrame | None
KeyError If any of the labels is not found.
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |