Hojas de cálculo de Excel pueden importarse en archivos XDF con rxImport a través de la interfaz de ODBC de Excel. Dado que el controlador ODBC de Excel está instalado y configurado en Windows, un ejemplo de código para importar una hoja de cálculo "Sheet1" del libro "C:/Data/ODBCTest.xlsx" sería:
#Define ODBC connection string.connectionStr <- "Driver={Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)};DriverId=790;Dbq=C:/Data/ODBCTest.xlsx;DefaultDir=c:/Data;"
#Define ODBC query into workbook. The worksheet name must be followed by '$' and enclosed in []. testExcel = "SELECT * FROM [Sheet1$]" #Define ODBC data source for the import using the query and connection string. excelDS<- RxOdbcData(sqlQuery = testExcel, connectionString=connectionStr) #Define input workbook and output xdf file. excelDS_XDF<- RxXdfData("testFromExcel.xdf") #Import the workbook into the XDF rxImport(excelDS, excelDS_XDF, overwrite=TRUE)