Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heliosdrm/pwr
Basic functions for power analysis in R
https://github.com/heliosdrm/pwr
Last synced: about 9 hours ago
JSON representation
Basic functions for power analysis in R
- Host: GitHub
- URL: https://github.com/heliosdrm/pwr
- Owner: heliosdrm
- License: other
- Created: 2015-02-25T21:33:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-04T07:09:00.000Z (12 months ago)
- Last Synced: 2024-11-06T12:48:05.256Z (7 days ago)
- Language: R
- Size: 73.2 KB
- Stars: 103
- Watchers: 3
- Forks: 19
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - heliosdrm/pwr - Basic functions for power analysis in R (R)
README
# R package “pwr”
## Basic functions for power analysis[![Build Status](https://github.com/heliosdrm/pwr/actions/workflows/check-standard.yaml/badge.svg?branch=master)](https://github.com/heliosdrm/pwr/actions/workflows/check-standard.yaml)
[![CRAN version](http://www.r-pkg.org/badges/version/pwr)](http://www.r-pkg.org/pkg/pwr)
[![Downloads](http://cranlogs.r-pkg.org/badges/pwr)]()This package was originally created by Stephane Champely, from the University of Lyon.
### Getting started
The official release of the package is on CRAN:
http://cran.r-project.org/web/packages/pwr/To get it installed, just write in an R session:
```R
install.packages("pwr", repos="http://cran.r-project.org")
```To work with the newest development version, check the build status icon at the top of this page. If it says “passing”, you should be able to install it from the source. Clone this Git repository in your machine, and if you have the tools to build R packages, do it and install it as appropriate for your OS.
If you cannot build it, you may still install it from an R session (at the expense of not having PDF docs). Set the working directory to the parent folder where `pwr` is copied, and then do:
```R
install.packages("pwr", repos=NULL, type="source")
```After installing, you have to load to use the package, with:
```R
library(pwr)
```Feel free to comment on any issues, file bugs or suggest improvements. All contributions are welcome!