Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 565238083
  • Loading branch information
blois authored and colaboratory-team committed Sep 14, 2023
1 parent 53260da commit 0fc4cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/colab/_reprs.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _summarize_dataframe(df):
pd.DataFrame()
.assign(
name=df.columns.to_series(),
variance=df.var(),
variance=df.var(numeric_only=True),
nunique=df.nunique(),
dtype=df.dtypes,
example_value=df.iloc[:1].T,
Expand Down

0 comments on commit 0fc4cfe

Please sign in to comment.