View source: R/TidySet.read-function.R
TidySet.read | R Documentation |
This function read multiple files archived by tar with gzip compression to a TidySet.
TidySet.read(path)
path |
A character of .ts.tar.gz file path (include file extension). |
output A TidySet, an ExpressionSet with three tables. Function of
TidySet.write
can write this file from the TidySet.
## Create input example
input=utils.example()
## Compile input to a TidySet
tidy_set=
TidySet.compile(
value=input$value
,outcome=input$outcome
,similarity=input$similarity
,mapping=input$mapping
,ontology=input$ontology
)
## Write a .ts.tar.gz file from a TidySet
TidySet.write(tidy_set,'example')
## Read a .ts.tar.gz file to a TidySet
TidySet.read('example.ts.tar.gz')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.