R/internal.R

Defines functions .describe_rrd .import_rrd .smart_import_rrd

.smart_import_rrd <- function(filename){
  assert_that(is.character(filename))
  assert_that(file.exists(filename))
  .Call("smart_import_rrd", filename, PACKAGE = "rrd")
}


.import_rrd <- function(filename, cf, start, end, step){
  assert_that(is.character(filename))
  assert_that(file.exists(filename))
  .Call("import_rrd", filename, cf, start, end, step, PACKAGE = "rrd")
}

.describe_rrd <- function(filename){
  assert_that(is.character(filename))
  assert_that(file.exists(filename))
  .Call("describe_rrd", filename, PACKAGE = "rrd")
  NULL
}

Try the rrd package in your browser

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

rrd documentation built on March 18, 2022, 5:51 p.m.