Skip to contents

Read a .npz file

Usage

read_npz(file)

Arguments

file

Path to the .npz file

Value

A list of arrays containing the data from the .npz file

Examples

read_npz(
  system.file("extdata", "test.npz", package = "grumpy")
)
#> [[1]]
#> [1] 1 2 3
#> 
#> [[2]]
#> [1] 4 5 6
#>