R/read.mitml.R

Defines functions read.mitml

Documented in read.mitml

read.mitml <- function(filename){
# read mitml objects from file

  env <- new.env(parent = parent.frame())
  load(filename, env)
  obj <- ls(env)
  eval(parse(text = obj), env)

}

Try the mitml package in your browser

Any scripts or data that you put into this service are public.

mitml documentation built on March 31, 2023, 7:01 p.m.