Skip to content

Commit

Permalink
Merge develop into main (#112)
Browse files Browse the repository at this point in the history
Update README

---------
Authored-by: ABT\gofortht <[email protected]>
  • Loading branch information
j-tafoya authored Jan 15, 2025
1 parent 0d31e46 commit 8157fc8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions qa_all.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,7 @@ unit_file <-

## Prime mover, botfirty, and fuel type missing from EF table

missing_from_ef \<-

unit_pm_botfirty_fuel %\>% anti_join(ef_pm_botfirty_fuel)
Identify if any combinations are missing from NOx and SO2 EF table.

```{r}
#| label: check-ef-table
Expand Down Expand Up @@ -206,7 +204,10 @@ ef_pm_botfirty_fuel <-
missing_from_ef <-
unit_pm_botfirty_fuel %>% anti_join(ef_pm_botfirty_fuel)
knitr::kable(missing_from_ef %>% arrange(primary_fuel_type))
knitr::kable(missing_from_ef %>%
select(prime_mover, botfirty, primary_fuel_type) %>%
distinct() %>%
arrange(primary_fuel_type))
```

## FC prime mover
Expand Down

0 comments on commit 8157fc8

Please sign in to comment.