Skip to content

Commit

Permalink
update filter
Browse files Browse the repository at this point in the history
  • Loading branch information
jzwart committed Feb 12, 2024
1 parent 07cbf10 commit b4ec865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/catalog.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ title: "Forecast catalog"
s3 <- arrow::s3_bucket(bucket = "bio230014-bucket01/challenges/metadata/model_id/",
endpoint_override = "sdsc.osn.xsede.org", anonymous = TRUE)
d1 <- arrow::open_dataset(s3, format = "json") |> dplyr::collect() %>%
dplyr::filter(project_id == "usgsrc4cast")
d1 <- arrow::open_dataset(s3, format = "json") |> dplyr::collect()
d1 <- dplyr::filter(d1, project_id == "usgsrc4cast")
model_type <- tidyr::unnest(d1[[3]], cols = names(d1[[3]]))$type
Expand Down

0 comments on commit b4ec865

Please sign in to comment.