Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #25

Merged
merged 3 commits into from
Mar 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Imports:
Suggests:
covr,
descriptr,
haven,
jsonlite,
knitr,
lubridate,
Expand Down
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# inferr 0.3.0

This is a minor release for bug fixes and API changes. We have completely revamped the API. All the functions now take a `data.frame` or `tibble` as the first argument followed by the variable names. The variable names need not be surrounded by single/double quotes anymore. Please view the guide for more details.

### Bug Fixes

- using if/while statement is used with a condition of lenght greater than 1 will result in a runtime error and not warning ([#9](https://github.com/rsquaredacademy/inferr/issues/9))

- error in binomial test ([#11](https://github.com/rsquaredacademy/inferr/issues/11))

THe shiny app has been updated to reflect the changes in the API.

# inferr 0.2.0

### New Features
Expand Down
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ knitr::opts_chunk$set(
)
```

inferr: Inferential statistics with R
inferr: Inferential statistics with R <img src="hex_inferr.png" align="right" />
-------------

**Author:** [Aravind Hebbali](http://www.aravindhebbali.com)<br/>
**License:** [MIT](https://opensource.org/licenses/MIT)

[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/inferr)](https://cran.r-project.org/package=inferr) [![Travis-CI Build Status](https://travis-ci.org/rsquaredacademy/inferr.svg?branch=master)](https://travis-ci.org/rsquaredacademy/inferr) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/rsquaredacademy/inferr?branch=master&svg=true)](https://ci.appveyor.com/project/rsquaredacademy/inferr) [![](https://cranlogs.r-pkg.org/badges/grand-total/inferr)](https://cran.r-project.org/package=inferr)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/inferr)](https://cran.r-project.org/package=inferr) [![Travis-CI Build Status](https://travis-ci.org/rsquaredacademy/inferr.svg?branch=master)](https://travis-ci.org/rsquaredacademy/inferr) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/rsquaredacademy/inferr?branch=master&svg=true)](https://ci.appveyor.com/project/rsquaredacademy/inferr) [![Coverage status](https://codecov.io/gh/rsquaredacademy/inferr/branch/master/graph/badge.svg)](https://codecov.io/github/rsquaredacademy/inferr?branch=master) [![](https://cranlogs.r-pkg.org/badges/grand-total/inferr)](https://cran.r-project.org/package=inferr) ![](https://img.shields.io/badge/lifecycle-maturing-blue.svg)

## Overview

Expand Down
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

## inferr: Inferential statistics with R
## inferr: Inferential statistics with R <img src="hex_inferr.png" align="right" />

**Author:** [Aravind Hebbali](http://www.aravindhebbali.com)<br/>
**License:**
Expand All @@ -12,7 +12,10 @@
Status](https://travis-ci.org/rsquaredacademy/inferr.svg?branch=master)](https://travis-ci.org/rsquaredacademy/inferr)
[![AppVeyor Build
Status](https://ci.appveyor.com/api/projects/status/github/rsquaredacademy/inferr?branch=master&svg=true)](https://ci.appveyor.com/project/rsquaredacademy/inferr)
[![Coverage
status](https://codecov.io/gh/rsquaredacademy/inferr/branch/master/graph/badge.svg)](https://codecov.io/github/rsquaredacademy/inferr?branch=master)
[![](https://cranlogs.r-pkg.org/badges/grand-total/inferr)](https://cran.r-project.org/package=inferr)
![](https://img.shields.io/badge/lifecycle-maturing-blue.svg)

## Overview

Expand Down Expand Up @@ -81,11 +84,16 @@ infer_os_t_test(hsb, write, mu = 50, type = 'all')
#> write 200 52.775 0.6702 9.4786 51.4537 54.0969
#> ---------------------------------------------------------------------------------
#>
#> Ho: mean(write) ~=50
#> Two Tail Test
#> ---------------
#>
#> Ha: mean < 50 Ha: mean ~= 50 Ha: mean > 50
#> t = 4.141 t = 4.141 t = 4.141
#> P < t = 1.0000 P > |t| = 0.0001 P > t = 0.0000
#> Ho: mean(write) ~=50
#> Ha: mean(write) !=50
#> --------------------------------------------------------------------------------
#> Variable t DF Sig Mean Diff. [95% Conf. Interval]
#> --------------------------------------------------------------------------------
#> write 4.141 199 0.99997 2.775 1.4537 4.0969
#> --------------------------------------------------------------------------------
```

##### ANOVA
Expand Down
4 changes: 0 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
## Release Summary

* added shiny app for interactive analysis

## Test environments
* local Windows 10, R 3.4.3
* ubuntu 12.04 (on travis-ci), R 3.3.3, R 3.4.3, R-devel
Expand Down
20 changes: 13 additions & 7 deletions docs/index.html

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