Learn R Programming

LibOPF (version 2.5.0)

opf_check: Checks the OPF file for proper formatting purposes

Description

Checks the OPF file for proper formatting purposes

Usage

opf_check(file)

Arguments

file

The text OPF file name

Value

`NULL`

Details

usage opf_check <input ASCII file in the LibOPF format>: Note that the input file for opf_check must be a text file. Use opf2txt to convert your OPF binary file into a text file.

Examples

Run this code
# NOT RUN {
dataset <- opf_read_subGraph(system.file("extdata/boat.dat",package = "LibOPF"))
File <- file.path(tempdir(), "boat.txt")
opf2txt(dataset,File)
opf_check(File)

# }

Run the code above in your browser using DataLab