Skip to contents

This function creates a Daf object that stores data in memory. See the Julia documentation for details.

Usage

memory_daf(name = "memory")

Arguments

name

The name of the Daf object (default: "memory")

Value

A Daf object with in-memory storage

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))
} # }