Connect to a workbook
When working with XLConnect
, the first step will be to load a workbook in your R session with loadWorkbook()
; this function will build a "bridge" between your Excel file and your R session.
In this and the following exercises, you will continue to work with urbanpop.xlsx
(view), containing urban population data throughout time. The Excel file is available in your current working directory.
Diese Übung ist Teil des Kurses
Introduction to Importing Data in R
Anleitung zur Übung
- Load the
XLConnect
package usinglibrary()
; it is already installed on DataCamp's servers. - Use
loadWorkbook()
to build a connection to the"urbanpop.xlsx"
file in R. Call the workbookmy_book
. - Print out the class of
my_book
using theclass()
function. What does this tell you?
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Load the XLConnect package
library(___)
# Build connection to urbanpop.xlsx: my_book
my_book <- ___
# Print out the class of my_book
___