Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianluca Baio committed Jul 22, 2020
1 parent 73bc475 commit b411a6b
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# BCEA
# BCEA --- development version

<!-- badges: start -->

[![Build status](https://img.shields.io/travis/giabaio/BCEA/master.svg?maxAge=0)](https://travis-ci.org/giabaio/BCEA) [![AppVeyor Build Status](https://img.shields.io/appveyor/ci/giabaio/BCEA/master.svg)](https://ci.appveyor.com/project/giabaio/BCEA) [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/BCEA)](https://cran.r-project.org/package=BCEA) [![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/BCEA)](https://cran.r-project.org/package=BCEA) [![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/grand-total/BCEA?color=orange)]( )
<!-- [![Build status](https://img.shields.io/travis/giabaio/BCEA/master.svg?maxAge=0)](https://travis-ci.org/giabaio/BCEA) [![AppVeyor Build Status](https://img.shields.io/appveyor/ci/giabaio/BCEA/master.svg)](https://ci.appveyor.com/project/giabaio/BCEA) [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/BCEA)](https://cran.r-project.org/package=BCEA) [![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/BCEA)](https://cran.r-project.org/package=BCEA) [![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/grand-total/BCEA?color=orange)]( ) -->
<!-- badges: end -->

## Contents
Expand All @@ -25,13 +24,10 @@ Main features of `BCEA` include:
* Cost-effectiveness analysis plots, such as CE planes and CEAC
* EVPPI calculations and plots

## Installation
There are two ways of installing `BCEA`. A "stable" version (currently 2.2.6) is packaged and available from [CRAN](https://cran.r-project.org/index.html). So you can simply type on your R terminal
This is the **development** version of BCEA (currently 2.4). It contains a major refactoring of the code to streamline the functions.

```r
install.packages("BCEA")
```
The second way involves using the "development" version of `BCEA` - this will usually be updated more frequently and may be continuously tested. On Windows machines, you need to install a few dependencies, including [Rtools](https://cran.r-project.org/bin/windows/Rtools/) first, e.g. by running
## Installation
The development version can be installed using this GitHub repository. On Windows machines, you need to install a few dependencies, including [Rtools](https://cran.r-project.org/bin/windows/Rtools/) first, e.g. by running

```R
pkgs <- c("MASS","Rtools","devtools")
Expand All @@ -41,13 +37,13 @@ install.packages(pkgs,repos=repos,dependencies = "Depends")
before installing the package using `devtools`:

```r
devtools::install_github("giabaio/BCEA")
devtools::install_github("giabaio/BCEA",ref="dev")
```
Under Linux or MacOS, it is sufficient to install the package via `devtools`:

```r
install.packages("devtools")
devtools:install_github("giabaio/BCEA")
devtools:install_github("giabaio/BCEA",ref="dev")
```

## Further details
Expand Down

0 comments on commit b411a6b

Please sign in to comment.