Skip to content

Commit

Permalink
fix spelling, unique (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecoconut committed Feb 16, 2023
1 parent f388a5c commit 85f6536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sketch/pandas_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def get_parts_from_df(df, useSketches=False):
extra = {
"rows": len(df[col]),
"count": int(df[col].count()),
"uniqecount": int(df[col].apply(str).nunique()),
"uniquecount": int(df[col].apply(str).nunique()),
"head-sample": str(
[string_repr_truncated(x) for x in df[col].head(5).tolist()]
),
Expand Down

0 comments on commit 85f6536

Please sign in to comment.