You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please briefly describe your problem and what output you expect. If you have a
2
+
question, please don't use this form. Instead, ask on <https://stackoverflow.com/>.
3
+
4
+
Please include a minimal reproducible example (AKA a reprex). If you've never heard of a [reprex](http://reprex.tidyverse.org/) before, start by reading <https://www.tidyverse.org/help/#reprex>.
Inferential statistics allows us to make generalizations about populations using data drawn from the population.
26
-
We use them when it is impractical or impossible to collect data about the whole population under study and instead,
27
-
we have a sample that represents the population under study and using inferential statistics technique, we make
28
-
generalizations about the population from the sample.
29
-
30
-
The **inferr** package:
31
-
32
-
- builds upon the statistical tests provided in **stats**
33
-
- provides additional and flexible input options
34
-
- more detailed and structured test results
35
-
36
-
As of version 0.1, **inferr** includes a select set of parametric and non-parametric statistical tests which are listed below:
21
+
inferr builds upon the statistical tests provided in **stats**, provides additional and flexible input options and more detailed and structured test results. As of version 0.3, **inferr** includes a select set of parametric and non-parametric statistical tests which are listed below:
Inferential statistics allows us to make generalizations about populations using data drawn from the population. We use them when it is impractical or impossible to collect data about the whole population under study and instead, we have a sample that represents the population under study and using inferential statistics technique, we make generalizations about the population from the sample.
14
-
15
-
The **inferr** package:
16
-
17
-
- builds upon the statistical tests provided in **stats**
18
-
- provides additional and flexible input options
19
-
- more detailed and structured test results
20
-
21
-
As of version 0.1, **inferr** includes a select set of parametric and non-parametric statistical tests which are listed below:
11
+
inferr builds upon the statistical tests provided in **stats**, provides additional and flexible input options and more detailed and structured test results. As of version 0.3, **inferr** includes a select set of parametric and non-parametric statistical tests which are listed below:
22
12
23
13
- One Sample t Test
24
14
- Paired Sample t Test
@@ -53,15 +43,15 @@ Shiny App
53
43
54
44
Use `infer_launch_shiny_app()` to explore the package using a shiny app.
55
45
56
-
Vignettes
57
-
---------
46
+
Articles
47
+
--------
58
48
59
49
-[Introduction to inferr](http://www.rsquaredacademy.com/inferr/articles/index.html)
60
50
61
51
Usage
62
52
-----
63
53
64
-
#####One Sample t Test
54
+
#### One Sample t Test
65
55
66
56
```r
67
57
infer_os_t_test(hsb, write, mu=50, type='all')
@@ -84,7 +74,7 @@ infer_os_t_test(hsb, write, mu = 50, type = 'all')
If you encounter a bug, please file a minimal reproducible example using [reprex](https://reprex.tidyverse.org/index.html) on github. For questions and clarifications, use [StackOverflow](https://stackoverflow.com/).
209
+
210
+
Code of Conduct
211
+
---------------
212
+
215
213
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.
Thanks for using inferr. Please follow the below steps before filing an issue:
4
+
5
+
* Start by making a minimal **repr**oducible **ex**ample using the
6
+
[reprex](http://reprex.tidyverse.org/) package.
7
+
* If it's a question: post it on StackOverflow.
8
+
* If it's a bug: file an issue.
9
+
* If you're not sure, please feel free to email us at [email protected]
10
+
11
+
Before opening a new issue, be sure to [search issues and pull requests](https://github.com/rsquaredacademy/inferr/issues) to make sure the bug hasn't been reported and/or already fixed in the development version. By
12
+
default, the search will be pre-populated with `is:issue is:open`. You can
13
+
[edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/)
14
+
(e.g. `is:pr`, `is:closed`) as needed. For example, you'd simply
15
+
remove `is:open` to search _all_ issues in the repo, open or closed.
0 commit comments