Package 'ictml'

Title: Easily Install and Load the 'ICTML'
Description: The 'ICTML' is a software suite implementing the Interpretable Causal Targeted Machine Learning ('ICTML') Project <https://www.ictml.org>.
Authors: Henrik Bengtsson [aut, cre, cph]
Maintainer: Henrik Bengtsson <[email protected]>
License: MIT + file LICENSE
Version: 0.0.1
Built: 2024-11-05 22:19:54 UTC
Source: https://github.com/ictml-project/ictml

Help Index


List all ICTML dependencies

Description

List all ICTML dependencies

Usage

ictml_deps(recursive = FALSE, repos = getOption("repos"))

Arguments

recursive

If TRUE, will also list all dependencies of tidyverse packages.

repos

The repositories to use to check for updates. Defaults to getOption("repos").

Value

A base::data.frame with columns package, cran, local, and behind.


List all packages in the ICTML

Description

List all packages in the ICTML

Usage

ictml_packages(include_self = TRUE)

Arguments

include_self

Include ictml in the list?

Value

Returns a character vector of package names.

Examples

ictml_packages()

Update ICTML packages

Description

This will check to see if all ICTML packages (and optionally, their dependencies) are up-to-date, and will install after an interactive confirmation.

Usage

ictml_update(recursive = FALSE, repos = getOption("repos"))

Arguments

recursive

If TRUE, will also list all dependencies of tidyverse packages.

repos

The repositories to use to check for updates. Defaults to getOption("repos").

Value

Returns nothing; outputs installation instructions, if needed.

Examples

## Not run: 
ictml_update()

## End(Not run)