diff --git a/docs/_build/html/_modules/tidypandas/tidyframe_class.html b/docs/_build/html/_modules/tidypandas/tidyframe_class.html
index 03469bf..24b1f1b 100644
--- a/docs/_build/html/_modules/tidypandas/tidyframe_class.html
+++ b/docs/_build/html/_modules/tidypandas/tidyframe_class.html
@@ -1838,11 +1838,10 @@
)
)
res = res.relocate(self.colnames)
-
- if isinstance(res, pd.DataFrame):
- if query is None and mask is not None:
- res = self.__data.loc[mask, :]
+ else: #query is None and mask is not None:
+ res = self.__data.loc[mask, :]
+ if isinstance(res, pd.DataFrame):
res = res.reset_index(drop = True)
return tidyframe(res, check = False)
else:
@@ -2900,7 +2899,7 @@ Source code for tidypandas.tidyframe_class
else:
rowid_name = _generate_new_string(self.colnames)
group_mapper = (self.distinct(by)
- .add_row_number(rowid_name)
+ .add_row_number(name=rowid_name)
.to_pandas()
)
res = (self.__data
diff --git a/docs/_build/html/changelog.html b/docs/_build/html/changelog.html
index ef08e4e..5026fe4 100644
--- a/docs/_build/html/changelog.html
+++ b/docs/_build/html/changelog.html
@@ -160,6 +160,11 @@