Skip to content

Commit

Permalink
fix warning about licence
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Nov 4, 2023
1 parent 18978e8 commit 448e39b
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 47 deletions.
4 changes: 2 additions & 2 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ publication/*
^\.httr-oauth$
^CRAN-RELEASE$
tests\^spelling
^LICENSE
^\.lintr$
^\.circleci$
^tests/manual$
Expand All @@ -52,4 +51,5 @@ hextools
\.code-workspace$
# Flip these two to no build vignettes:
# ^vignettes/(?!additional).*
^vignettes/additional
^vignettes/additional
^LICENSE\.md$
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: effectsize
Title: Indices of Effect Size
Version: 0.8.6.1
Version: 0.8.6.2
Authors@R:
c(person(given = "Mattan S.",
family = "Ben-Shachar",
Expand Down
23 changes: 2 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,2 @@
# MIT License

Copyright (c) 2023 easystats team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
YEAR: 2023
COPYRIGHT HOLDER: effectsize authors
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# MIT License

Copyright (c) 2023 effectsize authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
44 changes: 23 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,24 @@ Click on the buttons above to access the package
[**easystats blog**](https://easystats.github.io/blog/posts/), and
check-out these vignettes:

- **Effect Sizes**
- [**Standardized
Differences**](https://easystats.github.io/effectsize/articles/standardized_differences.html)
- [**For Contingency
Tables**](https://easystats.github.io/effectsize/articles/xtabs.html)
- [**ANOVA Effect
Sizes**](https://easystats.github.io/effectsize/articles/anovaES.html)
- **Effect Sizes Conversion**
- [**Between Effect
Sizes**](https://easystats.github.io/effectsize/articles/convert_r_d_OR.html)
- [**Between Probabilities and Odds and Risk
Ratios**](https://easystats.github.io/effectsize/articles/convert_p_OR_RR.html)
- [**Effect Size from Test
Statistics**](https://easystats.github.io/effectsize/articles/from_test_statistics.html)
- [**Automated Interpretation of Indices of Effect
Size**](https://easystats.github.io/effectsize/articles/interpret.html)
- **Effect Sizes**
- [**Standardized
Differences**](https://easystats.github.io/effectsize/articles/standardized_differences.html)
- [**For Contingency
Tables**](https://easystats.github.io/effectsize/articles/xtabs.html)
- [**ANOVA Effect
Sizes**](https://easystats.github.io/effectsize/articles/anovaES.html)
- **Effect Sizes Conversion**
- [**Between Effect
Sizes**](https://easystats.github.io/effectsize/articles/convert_r_d_OR.html)
- [**Between Probabilities and Odds and Risk
Ratios**](https://easystats.github.io/effectsize/articles/convert_p_OR_RR.html)
- [**Effect Size from Test
Statistics**](https://easystats.github.io/effectsize/articles/from_test_statistics.html)
- [**Plotting Functions for the ‘effectsize’
Package**](https://easystats.github.io/see/articles/effectsize.html)
- [**Automated Interpretation of Indices of Effect
Size**](https://easystats.github.io/effectsize/articles/interpret.html)

# Features

Expand Down Expand Up @@ -122,7 +124,7 @@ language effect sizes* and more…
### Contingency Tables

``` r
# Dependence
# Dependence
phi(mtcars$am, mtcars$vs)
## ϕ (adj.) | 95% CI
## -----------------------
Expand All @@ -143,7 +145,7 @@ fei(table(mtcars$cyl), p = c(0.1, 0.3, 0.6))
## -------------------
## 0.27 | [0.17, 1.00]
##
## - Adjusted for non-uniform expected probabilities.
## - Adjusted for uniform expected probabilities.
## - One-sided CIs: upper bound fixed at [1.00].
```

Expand Down Expand Up @@ -256,9 +258,9 @@ interpret_cohens_d(d = 0.45, rules = "gignac2016")

In order to cite this package, please use the following citation:

- Ben-Shachar M, Lüdecke D, Makowski D (2020). effectsize: Estimation
of Effect Size Indices and Standardized Parameters. *Journal of Open
Source Software*, *5*(56), 2815. doi: 10.21105/joss.02815
- Ben-Shachar M, Lüdecke D, Makowski D (2020). effectsize: Estimation of
Effect Size Indices and Standardized Parameters. *Journal of Open
Source Software*, *5*(56), 2815. doi: 10.21105/joss.02815

Corresponding BibTeX entry:

Expand Down
4 changes: 2 additions & 2 deletions man/effectsize.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 448e39b

Please sign in to comment.