records | R Documentation |
returns the object records from an rtoi.
records(x)
## S4 method for signature 'rtoi'
records(x)
records(x) <- value
## S4 replacement method for signature 'rtoi,records'
records(x) <- value
x |
an rtoi object |
value |
a records object to be set to x. |
a set of records in x rtoi
## Not run:
#' library(rsat)
# create a copy of navarre
file.copy(from=system.file("ex/Navarre",package="rsat"),
to=tempdir(),
recursive = TRUE)
# load example rtoi
navarre <- read_rtoi(file.path(tempdir(),"Navarre"))
print(navarre)
rcrds <- records(navarre)
records(navarre)<-rcrds[1]
print(navarre)
records(navarre) <- rcrds
print(navarre)
unlink(file.path(tempdir(),"Navarre"),recursive=TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.