1

I am trying to read a file into r and I keep getting this error. All of my libraries are installed and loaded. It is a spreadsheet with 2 sheets and I only want data from the second sheet.

read.xlsx(dataUrl, sheet = 2)

Error in getChildlessNode(xml = workbookRelsXML, tag = "Relationship") : 
  function 'Rcpp_precious_remove' not provided by package 'Rcpp'
MrFlick
  • 195,160
  • 17
  • 277
  • 295
mel
  • 19
  • 2

1 Answers1

0

You have to install the Rcpp package first:

install.packages('Rcpp')
library('Rcpp')
read.xlsx(dataUrl, sheet = 2)
U13-Forward
  • 69,221
  • 14
  • 89
  • 114