-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from pwwang/dev
0.0.3
- Loading branch information
Showing
12 changed files
with
108 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""APIs for stats""" | ||
|
||
from .funcs import rnorm, rpois, runif, quantile, sd | ||
from .funcs import rnorm, rpois, runif, quantile, sd, weighted_mean | ||
from .verbs import setNames |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
## 0.0.3 | ||
- Add stats.weighted_mean | ||
- Allow function to prefer recycling input or output for summarise | ||
|
||
## 0.0.2 | ||
- Port verbs and functions from tidyverse/dplyr and test them with original cases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
|
||
- Add tests for tidyr from original tidyverse/tidyr cases | ||
- Add more tests for base/core | ||
- Port more functions from `r-base`, `r-stats`, etc | ||
- Port more datasets from `r-datasets` namespace | ||
- Add more detailed documentations |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "datar" | ||
version = "0.0.2" | ||
description = "Probably the closest port of tidyr, dplyr and tibble in python" | ||
version = "0.0.3" | ||
description = "Port of R data packages tidyr, dplyr, tibble and so on in python" | ||
authors = ["pwwang <[email protected]>"] | ||
license = "MIT" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,8 @@ | |
setup( | ||
long_description=readme, | ||
name='datar', | ||
version='0.0.2', | ||
description='Probably the closest port of tidyr, dplyr and tibble in python', | ||
version='0.0.3', | ||
description='Port of R data packages tidyr, dplyr, tibble and so on in python', | ||
python_requires='==3.*,>=3.7.1', | ||
author='pwwang', | ||
author_email='[email protected]', | ||
|