Skip to contents

Converts R table into a table in the current SAS session. Translation errors may occur.

Usage

r_to_sas(x, table_name, libref = "WORK")

Arguments

x

R table

table_name

Name of table to be created in SAS.

libref

Name of libref to store SAS table within.

Value

No return value.

Examples

if (FALSE) { # \dontrun{
sas_connect()
r_to_sas(mtcars, "mtcars")
} # }