Skip to content

Commit 1b7f4aa

Browse files
authored
Merge branch 'master' into develop
2 parents 9c7c5a7 + d48bacb commit 1b7f4aa

File tree

2 files changed

+54
-18
lines changed

2 files changed

+54
-18
lines changed

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
- Manage `infer` class more systematically (#219).
1414
- Use `vdiffr` for plot testing (#221).
1515

16+
# infer 0.4.1
17+
18+
- Added Evgeni Chasnovski as author for his incredible work on refactoring the package and providing excellent support.
19+
1620
# infer 0.4.0
1721

1822
## Breaking changes

README.md

Lines changed: 50 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,81 @@
11

2-
Infer
3-
=====
2+
# infer R Package <img src="https://github.com/tidymodels/infer/blob/develop/figs/infer_gnome.png?raw=true" align="right" width=125 />
43

5-
------------------------------------------------------------------------
4+
-----
65

76
<!--figs/infer.svg-->
8-
<!--https://www.r-pkg.org/badges/version/infer-->
7+
8+
<!--http://www.r-pkg.org/badges/version/infer-->
9+
910
<!--figs/master.svg-->
11+
1012
<!--https://img.shields.io/codecov/c/github/tidymodels/infer/master.svg-->
11-
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/infer)](https://cran.r-project.org/package=infer) [![Travis-CI Build Status](https://travis-ci.org/tidymodels/infer.svg?branch=master)](https://travis-ci.org/tidymodels/infer) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/tidymodels/infer?branch=master&svg=true)](https://ci.appveyor.com/project/tidymodels/infer) [![Coverage Status](https://img.shields.io/codecov/c/github/tidymodels/infer/master.svg)](https://codecov.io/github/tidymodels/infer/?branch=master)
1213

13-
The objective of this package is to perform statistical inference using an expressive statistical grammar that coheres with the `tidyverse` design framework.
14+
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/infer)](https://cran.r-project.org/package=infer)
15+
[![Travis-CI Build
16+
Status](https://travis-ci.org/tidymodels/infer.svg?branch=master)](https://travis-ci.org/tidymodels/infer)
17+
[![AppVeyor Build
18+
Status](https://ci.appveyor.com/api/projects/status/github/tidymodels/infer?branch=master&svg=true)](https://ci.appveyor.com/project/tidymodels/infer)
19+
[![Coverage
20+
Status](https://img.shields.io/codecov/c/github/tidymodels/infer/master.svg)](https://codecov.io/github/tidymodels/infer/?branch=master)
21+
22+
The objective of this package is to perform statistical inference using
23+
an expressive statistical grammar that coheres with the `tidyverse`
24+
design
25+
framework.
1426

15-
![](https://raw.githubusercontent.com/tidymodels/infer/master/figs/ht-diagram.png)
27+
![](https://raw.githubusercontent.com/tidymodels/infer/master/figs/ht-diagram.png)<!-- -->
1628

1729
### Installation
1830

19-
------------------------------------------------------------------------
31+
-----
2032

2133
To install the current stable version of `infer` from CRAN:
2234

2335
``` r
2436
install.packages("infer")
2537
```
2638

27-
To install the developmental version of `infer`, make sure to install `remotes` first. The `pkgdown` website for this developmental version is at <https://infer.netlify.com>.
39+
To install the developmental version of `infer`, make sure to install
40+
`remotes` first. The `pkgdown` website for this developmental version is
41+
at <https://infer.netlify.com>.
2842

2943
``` r
3044
install.packages("remotes")
3145
remotes::install_github("tidymodels/infer")
3246
```
3347

34-
To install the cutting edge version of `infer` (do so at your own risk), make sure to install `remotes` first. This version was last updated on 2018-07-11 12:19:33.
48+
To install the cutting edge version of `infer` (do so at your own risk),
49+
make sure to install `remotes` first. This version was last updated on
50+
2019-06-13 14:54:51.
3551

3652
``` r
3753
install.packages("remotes")
3854
remotes::install_github("tidymodels/infer", ref = "develop")
3955
```
4056

41-
To see the things we are working on with the package as vignettes/Articles, check out the developmental `pkgdown` site at <https://infer-dev.netlify.com>.
57+
To see the things we are working on with the package as
58+
vignettes/Articles, check out the developmental `pkgdown` site at
59+
<https://infer-dev.netlify.com>.
4260

4361
### Contributing
4462

45-
------------------------------------------------------------------------
63+
-----
4664

47-
We welcome others helping us make this package as user friendly and efficient as possible. Please review our [contributing](https://github.com/tidymodels/infer/blob/develop/CONDUCT.md) and [conduct](CONDUCT.md) guidelines. Of particular interest is helping us to write `testthat` tests and help us in building vignettes that show how to (and how NOT to) use the package. By participating in this project you agree to abide by its terms.
65+
We welcome others helping us make this package as user friendly and
66+
efficient as possible. Please review our
67+
[contributing](https://github.com/tidymodels/infer/blob/develop/CONDUCT.md)
68+
and [conduct](CONDUCT.md) guidelines. Of particular interest is helping
69+
us to write `testthat` tests and in building vignettes that show how to
70+
(and how NOT to) use the package. By participating in this project you
71+
agree to abide by its terms.
4872

4973
### Examples
5074

51-
------------------------------------------------------------------------
75+
-----
5276

53-
These examples assume that `mtcars` has been overwritten so that the variables `cyl`, `vs`, `am`, `gear`, and `carb` are `factor`s.
77+
These examples assume that `mtcars` has been overwritten so that the
78+
variables `cyl`, `vs`, `am`, `gear`, and `carb` are `factor`s.
5479

5580
``` r
5681
mtcars <- as.data.frame(mtcars) %>%
@@ -61,7 +86,8 @@ mtcars <- as.data.frame(mtcars) %>%
6186
carb = factor(carb))
6287
```
6388

64-
Hypothesis test for a difference in proportions (using the formula interface `y ~ x` in `specify()`):
89+
Hypothesis test for a difference in proportions (using the formula
90+
interface `y ~ x` in `specify()`):
6591

6692
``` r
6793
mtcars %>%
@@ -71,7 +97,9 @@ mtcars %>%
7197
calculate(stat = "diff in props", order = c("1", "0"))
7298
```
7399

74-
Confidence interval for a difference in means (using the non-formula interface giving both the `response` and `explanatory` variables in `specify()`):
100+
Confidence interval for a difference in means (using the non-formula
101+
interface giving both the `response` and `explanatory` variables in
102+
`specify()`):
75103

76104
``` r
77105
mtcars %>%
@@ -80,6 +108,10 @@ mtcars %>%
80108
calculate(stat = "diff in means", order = c("1", "0"))
81109
```
82110

83-
Note that the formula and non-formula interfaces work for all implemented inference procedures in `infer`. Use whatever is more natural for you. If you will be doing modeling using functions like `lm()` and `glm()`, we recommend you begin to use the formula `y ~ x` notation as soon as possible though.
111+
Note that the formula and non-formula interfaces work for all
112+
implemented inference procedures in `infer`. Use whatever is more
113+
natural for you. If you will be doing modeling using functions like
114+
`lm()` and `glm()`, we recommend you begin to use the formula `y ~ x`
115+
notation as soon as possible though.
84116

85117
Other examples are available in the package vignettes.

0 commit comments

Comments
 (0)