Learn R Programming

rmcfs (version 1.2.5)

read.adh: Reads data from ADH

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

read.adh(file = "")

Arguments

file

exported filename

Examples

Run this code
  # Load rmcfs library.
  library(rmcfs)
  
  # Load alizadeh dataset.
  data(alizadeh)
  d <- alizadeh
  
  write.adh(d, file = file.path(tempdir(), "alizadeh.adh"), target = "class")
  d <- read.adh(file = file.path(tempdir(), "alizadeh.adh"))

Run the code above in your browser using DataLab