0

Can someone tell me how to analyse data from a .xls file to perform a SPIA analysis? How do I have to load the data?

llrs
  • 3,308
  • 35
  • 68

1 Answers1

0

you can use the xlsx package:

require(xlsx)
read.xlsx("myfile.xlsx", sheetName = "Sheet1")

you have to tell which of your sheets you need to read.

Derek Corcoran
  • 3,930
  • 2
  • 25
  • 54