search through log for parameter values or names
Source:R/object_utilities_and_methods.R
search_log.Rd
search through log for parameter values or names
Details
You may search through the log to see if you have used certain parameters and if so which values did you use when running a certain trial. If `return_assay` is `TRUE` then the entire log call will be returned. This will include all parameter values including defaults parse to function.
Examples
if (FALSE) { # \dontrun{
data(vesalius)
# First we build a simple object
ves <- build_vesalius_object(coordinates, counts)
# We can do a simple run
ves <- build_vesalius_embeddings(ves)
# maybe we want to try a different method
# both will be stored in the object
ves <- build_vesalius_embeddings(ves, dim_reduction = "UMAP")
# search log
search_log(ves, "tensor_resolution")
} # }