Section author: Jonathon Love
Reads a data set from jamovi (read)
Description
Reads a data set from jamovi
Usage
read(id, columns)
Arguments
|
the number, or the title of the data set to read |
|
(optional) only reads the columns named |
Output
the data set as a data frame
Examples
jmvconnect::what()
# Available Data Sets
# -------------------------------------
# Title Rows Cols
# -------------------------------------
# 1 iris 150 5
# 2 Tooth Growth 60 3
# -------------------------------------
data <- jmvconnect::read('Tooth Growth')
# or
data <- jmvconnect::read(2)