Skip to contents

Converts table from current SAS session into a R data.frame. Translation errors may occur.

Usage

sas_to_r(table_name, libref = "WORK")

Arguments

table_name

Name of table in SAS.

libref

Name of libref SAS table is stored within.

Value

R data.frame.

Examples

if (FALSE) { # \dontrun{
sas_connect()
cars <- sas_to_r("cars", "sashelp")
} # }