Learn R Programming

wal (version 0.1.0)

writeWAL: Write WAL instance to bitmap file in WAL format.

Description

Write WAL instance to bitmap file in WAL format.

Usage

writeWAL(filepath, wal)

Arguments

filepath

character string, path to the file including extension

wal

a wal instance. Note that 1 will be substracted from the data when it is written, as indices are stored 0-based in the file.

Examples

Run this code
if (FALSE) {
   walf = '~/data/q2_pak0_extracted/textures/e1u2/basic1_7.wal';
   wal = read.wal(walf);
   writeWAL(tempfile(fileext = ".wal"), wal);
}

Run the code above in your browser using DataLab