Skip to content

Commit

Permalink
๐Ÿ› ๏ธ๐Ÿ“ƒ update doce, release v1.0.1.dev0 to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenithClown committed Apr 19, 2024
1 parent 9bba93e commit 656e1c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ changelogs are as follows:
We're pleased to annouce the first major release and preview-built for **`pandaswizard`**! This version mainly focuses on enduser
feedback and basic setup for the module.

#### Version 1.0.0.dev0 | Release Date: 19.04.2024
#### Version 1.0.1.dev0 | Release Date: 19.04.2024

The first `dev` or `preview-build` for `v1.0.0` focusing on function development and objective documentation. The version
focuses on providing basic features like:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ the [`pandas`](https://pypi.org/project/pandas/) module and use cases. The below
```python
import pandaswizard as pdw

percentiles = df.groupby("group").agg({"A" : pdw.percentile(0.05)})
percentiles = df.groupby("group").agg({"A" : pdw.percentile(50)})
percentiles.head()
```

The above function calculates the 0.05, i.e., 5th percentile of the feature "A" based on the grouped column "group" from the data frame.
The above function calculates the 50th percentile, i.e., the median of the feature "A" based on the grouped column "group" from the data frame.

</div>
2 changes: 1 addition & 1 deletion pandaswizard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# ? package follows https://peps.python.org/pep-0440/
# ? https://python-semver.readthedocs.io/en/latest/advanced/convert-pypi-to-semver.html
__version__ = "1.0.0.dev0"
__version__ = "1.0.1.dev0"

# init-time options registrations
from pandaswizard.aggregate import (
Expand Down

0 comments on commit 656e1c8

Please sign in to comment.