Extract results from a Daf object using a query
Details
The expression daf[query] is equivalent to get_query(daf, query, cache = TRUE).
See the Julia documentation for details.
Examples
if (FALSE) { # \dontrun{
setup_daf()
daf <- memory_daf("example")
add_axis(daf, "cell", c("A", "B", "C"))
set_vector(daf, "cell", "score", c(1.0, 2.0, 3.0))
daf[Axis("cell") |> LookupVector("score")]
} # }