I never used R before and so need help on a seemingly trivial issue:
I have an excel file "data.xlsx", available here, and want to run the function hurst(x)
on it: http://www.inside-r.org/packages/cran/pracma/docs/hurst
I did:
theData <- readWorksheetFromFile("C:\\Users\\David\\Desktop\\R\\data.xlsx",sheet=1)
Which works fine. Then I try
library(pracma)
hurst(theData)
Which returns
Error: could not find function "hurst"
What is wrong?