This function generates a webpage listing all the apps available through the teachR library. The list can be filtered by category (type list_categories() for a list of existing categories) and keywords (type list_keywords() for a list of existing keywords).

list_apps(categories = NULL, keywords = NULL)

Arguments

categories

A character string or a vector of character strings corresponding to existing app categories (case insensitive).

keywords

A character string or a vector of character strings corresponding to existing app keywords (case insensitive).

Value

This function opens an html file.

Details

If called from RStudio, the list will open in the internal RStudio viewer. If called from a terminal, it will open in your default internet browser.

Examples

# NOT RUN {
 list_apps(categories = c("biology", "social science"))
# }