Description Usage Arguments Examples
Load Hybrid Array Stored in Hard Disk
| 1 | load_hybrid_array(path)
 | 
| path | directory where hybrid array is stored | 
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Create an array
data <- rnorm(1e5)
x <- hybrid_array(data, c(100, 100, 10))
# save to disk
x$swap_out()
path = x$file_location
# Load from disk
y = load_hybrid_array(path)
# check
range(y[] - x[]) # should be 0,0
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.