Skip to content

Commit

Permalink
README: Update installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
stewid committed Nov 2, 2019
1 parent 97a0cd3 commit 82854c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ To install the latest release on CRAN
install.packages("EpiContactTrace")
```

To install the development version of EpiContactTrace, it's easiest to
use the `devtools` package:
To install the development version of EpiContactTrace from GitHub,
it's easiest to use the `remotes` package:

```
# install.packages("devtools")
library(devtools)
# install.packages("remotes")
library(remotes)
install_github("stewid/EpiContactTrace")
```

Expand Down

1 comment on commit 82854c4

@lintr-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

R/network-summary.R:262:1: style: functions should have cyclomatic complexity of less than 15, this has 38.

setMethod("NetworkSummary",
^

R/shortest-paths.R:169:1: style: functions should have cyclomatic complexity of less than 15, this has 41.

setMethod("ShortestPaths",
^

R/trace.R:161:1: style: functions should have cyclomatic complexity of less than 15, this has 56.

Trace <- function(movements,
^

R/tree.R:135:1: style: functions should have cyclomatic complexity of less than 15, this has 48.

position_tree <- function(tree,
^

Please sign in to comment.