Skip to content
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
8 changes: 6 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
Package: treepplr
Title: R Interface to TreePPL
Version: 0.15.0
Authors@R:
Authors@R: c(
person("Mariana", "P Braga", , "mpiresbr@gmail.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-1253-2536"))
comment = c(ORCID = "0000-0002-1253-2536")),
person("Tim", "Virgoulay", role = "aut"),
person("Stenio", "Foerster", role = "aut")
)
Description: This package in an interface for using TreePPL programs.
License: MIT + file LICENSE
Encoding: UTF-8
Expand All @@ -17,6 +20,7 @@ Imports:
assertthat,
digest,
future,
future.apply,
methods,
jsonlite,
tidytree,
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ and basic examples of running various models under [Articles](https://treeppl.or
You can install treepplr like so:

``` r
if(!require("devtools", quietly = TRUE)) {
install.packages("devtools")
library(devtools)
if(!require("pak", quietly = TRUE)) {
install.packages("pak")
library(pak)
} else {
library(devtools)
library(pak)
}

devtools::install_github("treeppl/treepplr")
pak::pak("treeppl/treepplr")
```

This will only install the R package. The TreePPL compiler will not be downloaded and installed until you run your first analysis, and the TreePPL compiler is called. During the download, you will see a message like this
Expand Down
Loading