read.adh: Reads data from ADH

Description Usage Arguments Examples

View source: R/rmcfs.io.R

Description

Imports data from ADH format. This format is based on two files: 'adh' that contains ADX header and 'csv' that contains the data.

Usage

1
read.adh(file = "")

Arguments

file

exported filename

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
  ## Not run: ###dontrunbegin

  # create artificial data
  adata <- artificial.data(rnd_features = 1000)

  write.adh(adata, file = file.path(tempdir(), "adata.adh"), target = "class")
  adata <- read.adh(file = file.path(tempdir(), "adata.adh"))
  
  
## End(Not run)###dontrunend

rmcfs documentation built on Sept. 18, 2021, 5:07 p.m.

Related to read.adh in rmcfs...