We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed89fd8 commit 9c4893aCopy full SHA for 9c4893a
bigframes/operations/_matplotlib/core.py
@@ -104,10 +104,7 @@ def _compute_plot_data(self):
104
# Works around a pandas bug:
105
# https://github.com/pandas-dev/pandas/commit/45b937d64f6b7b6971856a47e379c7c87af7e00a
106
c = self.kwargs.get("c", None)
107
- if (
108
- pd.core.dtypes.common.is_integer(c)
109
- and not self.data.columns._holds_integer()
110
- ):
+ if pd.core.dtypes.common.is_integer(c):
111
c = self.data.columns[c]
112
if self._is_column_name(c, sample) and sample[c].dtype == dtypes.STRING_DTYPE:
113
sample[c] = sample[c].astype("object")
0 commit comments