diff --git a/README.rst b/README.rst index 91dac12751..246b9270fa 100644 --- a/README.rst +++ b/README.rst @@ -304,7 +304,7 @@ following IAM roles: * BigQuery Connection Admin (roles/bigquery.connectionAdmin) * Cloud Functions Developer (roles/cloudfunctions.developer) * Service Account User (roles/iam.serviceAccountUser) on the - `service account ` + `service account `__ ``PROJECT_NUMBER-compute@developer.gserviceaccount.com`` * Storage Object Viewer (roles/storage.objectViewer) * Project IAM Admin (roles/resourcemanager.projectIamAdmin) diff --git a/third_party/bigframes_vendored/pandas/core/frame.py b/third_party/bigframes_vendored/pandas/core/frame.py index bca18bd0b7..10cdbf8f7c 100644 --- a/third_party/bigframes_vendored/pandas/core/frame.py +++ b/third_party/bigframes_vendored/pandas/core/frame.py @@ -2961,7 +2961,6 @@ def map(self, func, na_action: Optional[str] = None) -> DataFrame: to every element of a DataFrame. .. note:: - In pandas 2.1.0, DataFrame.applymap is deprecated and renamed to DataFrame.map. @@ -3038,6 +3037,8 @@ def map(self, func, na_action: Optional[str] = None) -> DataFrame: """ raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE) + applymap = map + # ---------------------------------------------------------------------- # Merging / joining methods