Skip to contents

Outputs EU Taxonomy-eligible results

Usage

taxonomy_eligible(data)

Arguments

data

A dataframe

Value

A dataframe

Examples

data <- tibble::tibble(
  ep_product = c("plastic", "iron"),
  keyword_is_present = c(TRUE, FALSE),
  gpt_validation = c("Yes", "No")
)
output <- taxonomy_eligible(data)
output
#> # A tibble: 1 × 3
#>   ep_product keyword_is_present gpt_validation
#>   <chr>      <lgl>              <chr>         
#> 1 plastic    TRUE               Yes