Package 'r.pkg.template'

Title: R Package Template
Description: R package template with GitHub Actions workflows included.
Authors: insightsengineering [aut, cre]
Maintainer: insightsengineering <[email protected]>
License: Apache License 2.0 | file LICENSE
Version: 0.1.0.9191
Built: 2024-11-12 13:28:35 UTC
Source: https://github.com/insightsengineering/r.pkg.template

Help Index


Personal greeting

Description

Greet a person and appropriately capitalize their name.

Usage

hello(name = "your name")

Arguments

name

Your name (character string; e.g. "john doe").

Value

A character string, capitalized to title case.

Examples

hello("james bond")

Personal greeting as a Plumber API

Description

Greet a person and appropriately capitalize their name as a Plumber API.

Usage

plumber_api(...)

Arguments

...

Additional arguments to plumber::pr_run()

Value

Plumber API showcasing the personal greeting feature.


Personal greeting as a Shiny app

Description

Greet a person and appropriately capitalize their name as a Shiny app.

Usage

shiny_app()

Value

Shiny app showcasing the personal greeting feature.