Package Properties and Attributes (1.1.0)

Summary of entries of Properties and Attributes for bigframes.

bigframes._config.Options.bigquery

Options to use with the BigQuery engine.

See more: bigframes._config.Options.bigquery

bigframes._config.Options.compute

Options controlling object computation.

See more: bigframes._config.Options.compute

bigframes._config.Options.display

Options controlling object representation.

See more: bigframes._config.Options.display

bigframes._config.Options.sampling

Options controlling downsampling when downloading data to memory.

See more: bigframes._config.Options.sampling

bigframes._config.bigquery_options.BigQueryOptions.application_name

The application name to amend to the user-agent sent to Google APIs.

See more: bigframes._config.bigquery_options.BigQueryOptions.application_name

bigframes._config.bigquery_options.BigQueryOptions.bq_connection

Name of the BigQuery connection to use in the form <PROJECT_NUMBER/PROJECT_ID>.

See more: bigframes._config.bigquery_options.BigQueryOptions.bq_connection

bigframes._config.bigquery_options.BigQueryOptions.credentials

The OAuth2 credentials to use for this client.

See more: bigframes._config.bigquery_options.BigQueryOptions.credentials

bigframes._config.bigquery_options.BigQueryOptions.kms_key_name

Customer-managed encryption key used to control encryption of the data at rest in BigQuery.

See more: bigframes._config.bigquery_options.BigQueryOptions.kms_key_name

bigframes._config.bigquery_options.BigQueryOptions.location

Default location for job, datasets, and tables.

See more: bigframes._config.bigquery_options.BigQueryOptions.location

bigframes._config.bigquery_options.BigQueryOptions.project

Google Cloud project ID to use for billing and as the default project.

See more: bigframes._config.bigquery_options.BigQueryOptions.project

bigframes._config.bigquery_options.BigQueryOptions.skip_bq_connection_check

bigframes._config.bigquery_options.BigQueryOptions.use_regional_endpoints

Flag to connect to regional API endpoints.

See more: bigframes._config.bigquery_options.BigQueryOptions.use_regional_endpoints

bigframes.core.indexes.base.Index.T

Return the transpose, which is by definition self.

See more: bigframes.core.indexes.base.Index.T

bigframes.core.indexes.base.Index.dtype

Return the dtype object of the underlying data.

See more: bigframes.core.indexes.base.Index.dtype

bigframes.core.indexes.base.Index.dtypes

Return the dtypes as a Series for the underlying MultiIndex.

See more: bigframes.core.indexes.base.Index.dtypes

bigframes.core.indexes.base.Index.empty

Returns True if the Index is empty, otherwise returns False.

See more: bigframes.core.indexes.base.Index.empty

bigframes.core.indexes.base.Index.has_duplicates

Check if the Index has duplicate values.

See more: bigframes.core.indexes.base.Index.has_duplicates

bigframes.core.indexes.base.Index.is_monotonic_decreasing

Return a boolean if the values are equal or decreasing.

See more: bigframes.core.indexes.base.Index.is_monotonic_decreasing

bigframes.core.indexes.base.Index.is_monotonic_increasing

Return a boolean if the values are equal or increasing.

See more: bigframes.core.indexes.base.Index.is_monotonic_increasing

bigframes.core.indexes.base.Index.is_unique

Return if the index has unique values.

See more: bigframes.core.indexes.base.Index.is_unique

bigframes.core.indexes.base.Index.name

Returns Index name.

See more: bigframes.core.indexes.base.Index.name

bigframes.core.indexes.base.Index.names

Returns the names of the Index.

See more: bigframes.core.indexes.base.Index.names

bigframes.core.indexes.base.Index.ndim

API documentation for ndim property.

See more: bigframes.core.indexes.base.Index.ndim

bigframes.core.indexes.base.Index.nlevels

Number of levels.

See more: bigframes.core.indexes.base.Index.nlevels

bigframes.core.indexes.base.Index.query_job

BigQuery job metadata for the most recent query.

See more: bigframes.core.indexes.base.Index.query_job

bigframes.core.indexes.base.Index.shape

Return a tuple of the shape of the underlying data.

See more: bigframes.core.indexes.base.Index.shape

bigframes.core.indexes.base.Index.size

Returns the size of the Index.

See more: bigframes.core.indexes.base.Index.size

bigframes.core.indexes.base.Index.values

Return an array representing the data in the Index.

See more: bigframes.core.indexes.base.Index.values

bigframes.dataframe.DataFrame.at

Access a single value for a row/column label pair.

See more: bigframes.dataframe.DataFrame.at

bigframes.dataframe.DataFrame.axes

Return a list representing the axes of the DataFrame.

See more: bigframes.dataframe.DataFrame.axes

bigframes.dataframe.DataFrame.bqclient

BigQuery REST API Client the DataFrame uses for operations.

See more: bigframes.dataframe.DataFrame.bqclient

bigframes.dataframe.DataFrame.columns

The column labels of the DataFrame.

See more: bigframes.dataframe.DataFrame.columns

bigframes.dataframe.DataFrame.dtypes

Return the dtypes in the DataFrame.

See more: bigframes.dataframe.DataFrame.dtypes

bigframes.dataframe.DataFrame.empty

Indicates whether Series/DataFrame is empty.

See more: bigframes.dataframe.DataFrame.empty

bigframes.dataframe.DataFrame.iat

Access a single value for a row/column pair by integer position.

See more: bigframes.dataframe.DataFrame.iat

bigframes.dataframe.DataFrame.iloc

Purely integer-location based indexing for selection by position.

See more: bigframes.dataframe.DataFrame.iloc

bigframes.dataframe.DataFrame.index

The index (row labels) of the DataFrame.

See more: bigframes.dataframe.DataFrame.index

bigframes.dataframe.DataFrame.loc

Access a group of rows and columns by label(s) or a boolean array.

See more: bigframes.dataframe.DataFrame.loc

bigframes.dataframe.DataFrame.ndim

Return an int representing the number of axes / array dimensions.

See more: bigframes.dataframe.DataFrame.ndim

bigframes.dataframe.DataFrame.plot

Make plots of Dataframes.

See more: bigframes.dataframe.DataFrame.plot

bigframes.dataframe.DataFrame.query_job

BigQuery job metadata for the most recent query.

See more: bigframes.dataframe.DataFrame.query_job

bigframes.dataframe.DataFrame.shape

Return a tuple representing the dimensionality of the DataFrame.

See more: bigframes.dataframe.DataFrame.shape

bigframes.dataframe.DataFrame.size

Return an int representing the number of elements in this object.

See more: bigframes.dataframe.DataFrame.size

bigframes.dataframe.DataFrame.sql

Compiles this DataFrame's expression tree to SQL.

See more: bigframes.dataframe.DataFrame.sql

bigframes.dataframe.DataFrame.values

Return the values of DataFrame in the form of a NumPy array.

See more: bigframes.dataframe.DataFrame.values

bigframes.ml.cluster.KMeans.cluster_centers_

Information of cluster centers.

See more: bigframes.ml.cluster.KMeans.cluster_centers_

bigframes.ml.compose.ColumnTransformer.transformers_

The collection of transformers as tuples of (name, transformer, column).

See more: bigframes.ml.compose.ColumnTransformer.transformers_

bigframes.ml.decomposition.PCA.components_

Principal axes in feature space, representing the directions of maximum variance in the data.

See more: bigframes.ml.decomposition.PCA.components_

bigframes.ml.decomposition.PCA.explained_variance_

The amount of variance explained by each of the selected components.

See more: bigframes.ml.decomposition.PCA.explained_variance_

bigframes.ml.decomposition.PCA.explained_variance_ratio_

Percentage of variance explained by each of the selected components.

See more: bigframes.ml.decomposition.PCA.explained_variance_ratio_

bigframes.operations.datetimes.DatetimeMethods.date

Returns numpy array of Python datetime.date objects.

See more: bigframes.operations.datetimes.DatetimeMethods.date

bigframes.operations.datetimes.DatetimeMethods.day

The day of the datetime.

See more: bigframes.operations.datetimes.DatetimeMethods.day

bigframes.operations.datetimes.DatetimeMethods.dayofweek

The day of the week with Monday=0, Sunday=6.

See more: bigframes.operations.datetimes.DatetimeMethods.dayofweek

bigframes.operations.datetimes.DatetimeMethods.hour

The hours of the datetime.

See more: bigframes.operations.datetimes.DatetimeMethods.hour

bigframes.operations.datetimes.DatetimeMethods.minute

The minutes of the datetime.

See more: bigframes.operations.datetimes.DatetimeMethods.minute

bigframes.operations.datetimes.DatetimeMethods.month

The month as January=1, December=12.

See more: bigframes.operations.datetimes.DatetimeMethods.month

bigframes.operations.datetimes.DatetimeMethods.quarter

The quarter of the date.

See more: bigframes.operations.datetimes.DatetimeMethods.quarter

bigframes.operations.datetimes.DatetimeMethods.second

The seconds of the datetime.

See more: bigframes.operations.datetimes.DatetimeMethods.second

bigframes.operations.datetimes.DatetimeMethods.time

Returns numpy array of datetime.time objects.

See more: bigframes.operations.datetimes.DatetimeMethods.time

bigframes.operations.datetimes.DatetimeMethods.tz

bigframes.operations.datetimes.DatetimeMethods.unit

Returns the unit of time precision.

See more: bigframes.operations.datetimes.DatetimeMethods.unit

bigframes.operations.datetimes.DatetimeMethods.year

The year of the datetime.

See more: bigframes.operations.datetimes.DatetimeMethods.year

bigframes.pandas.NamedAgg.aggfunc

Alias for field number 1.

See more: bigframes.pandas.NamedAgg.aggfunc

bigframes.pandas.NamedAgg.column

Alias for field number 0.

See more: bigframes.pandas.NamedAgg.column

bigframes.series.Series.T

Return the transpose, which is by definition self.

See more: bigframes.series.Series.T

bigframes.series.Series.at

Access a single value for a row/column label pair.

See more: bigframes.series.Series.at

bigframes.series.Series.dt

Accessor object for datetime-like properties of the Series values.

See more: bigframes.series.Series.dt

bigframes.series.Series.dtype

Return the dtype object of the underlying data.

See more: bigframes.series.Series.dtype

bigframes.series.Series.dtypes

Return the dtype object of the underlying data.

See more: bigframes.series.Series.dtypes

bigframes.series.Series.empty

Indicates whether Series/DataFrame is empty.

See more: bigframes.series.Series.empty

bigframes.series.Series.iat

Access a single value for a row/column pair by integer position.

See more: bigframes.series.Series.iat

bigframes.series.Series.iloc

Purely integer-location based indexing for selection by position.

See more: bigframes.series.Series.iloc

bigframes.series.Series.index

The index (axis labels) of the Series.

See more: bigframes.series.Series.index

bigframes.series.Series.is_monotonic_decreasing

Return boolean if values in the object are monotonically decreasing.

See more: bigframes.series.Series.is_monotonic_decreasing

bigframes.series.Series.is_monotonic_increasing

Return boolean if values in the object are monotonically increasing.

See more: bigframes.series.Series.is_monotonic_increasing

bigframes.series.Series.loc

Access a group of rows and columns by label(s) or a boolean array.

See more: bigframes.series.Series.loc

bigframes.series.Series.name

Return the name of the Series.

See more: bigframes.series.Series.name

bigframes.series.Series.ndim

Return an int representing the number of axes / array dimensions.

See more: bigframes.series.Series.ndim

bigframes.series.Series.plot

Make plots of Series.

See more: bigframes.series.Series.plot

bigframes.series.Series.query_job

BigQuery job metadata for the most recent query.

See more: bigframes.series.Series.query_job

bigframes.series.Series.shape

Return a tuple of the shape of the underlying data.

See more: bigframes.series.Series.shape

bigframes.series.Series.size

Return the number of elements in the underlying data.

See more: bigframes.series.Series.size

bigframes.series.Series.str

Vectorized string functions for Series and Index.

See more: bigframes.series.Series.str

bigframes.series.Series.struct

Accessor object for struct properties of the Series values.

See more: bigframes.series.Series.struct

bigframes.series.Series.values

Return Series as ndarray or ndarray-like depending on the dtype.

See more: bigframes.series.Series.values

bigframes.session.Session.bqclient

API documentation for bqclient property.

See more: bigframes.session.Session.bqclient

bigframes.session.Session.bqconnectionclient

API documentation for bqconnectionclient property.

See more: bigframes.session.Session.bqconnectionclient

bigframes.session.Session.bqconnectionmanager

API documentation for bqconnectionmanager property.

See more: bigframes.session.Session.bqconnectionmanager

bigframes.session.Session.bqstoragereadclient

API documentation for bqstoragereadclient property.

See more: bigframes.session.Session.bqstoragereadclient

bigframes.session.Session.cloudfunctionsclient

API documentation for cloudfunctionsclient property.

See more: bigframes.session.Session.cloudfunctionsclient

bigframes.session.Session.resourcemanagerclient

API documentation for resourcemanagerclient property.

See more: bigframes.session.Session.resourcemanagerclient