Skip to contents

Wrapper around the 'projects_list' endpoint to retrieve a list of projects based on the specified query parameters.

Usage

get_projects(...)

Value

A dataframe containing the projects that match the specified query parameters: https://api.ecopi.de/api/docs/#tag/v0.1/operation/v0.1_projects_list.

Examples

# retrieve a dataframe of all projects
if (FALSE) { # \dontrun{
get_projects()
} # }

# Retrieve a list of projects that contain 'red_panda' or 'green_banana' in their name
if (FALSE) { # \dontrun{
get_projects(project_name__in = "red_panda, green_banana")
} # }