Description Usage Arguments Value Examples
It is the first step in the OSEMN
data science pipeline. It allows to read data from a chosen data source
1 |
from |
the type of data source from which the data will be obtained. This should be one of "csv", "tsv", "excel", "rds", "mysql". |
... |
any data source specific parameter |
a data frame containg the data
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
#read data for a csv file
my_data <- obtain(from = "csv", file = "data.csv")
#read data for a csv file
my_data <- obtain(from = "csv", file = "data.csv")
#read data for a csv file
my_data <- obtain(from = "csv", file = "data.csv")
#read data for a csv file
my_data <- obtain(from = "csv", file = "data.csv")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.