Load the predictions/scores.parquet file from an installed dataset.
Usage
load_predictions(record_id, lazy = TRUE)
Arguments
- record_id
Zenodo record ID of an installed dataset
- lazy
If TRUE (default), return an Arrow Table for lazy evaluation.
If FALSE, collect into a tibble immediately.
Value
Arrow Table (if lazy=TRUE) or tibble with prediction scores
Examples
if (FALSE) { # \dontrun{
# Lazy loading
scores <- load_predictions(415123)
scores |> filter(plddt_mean > 80) |> collect()
# Eager loading
scores <- load_predictions(415123, lazy = FALSE)
} # }