can't find .ffdf functions

I am working through the code in Big Data Analytics with R chapter 3 published by Pakt and have come across a series of errors telling me that various functions that end in .ffdf are not found. I have the ff and ffbase packages installed and libraried. I can see the functions in the list in the packages window but when I run the code -> not found.

I am running R version 1.4.1103 on macOS Big Sur 11.2.1

Examples:
#Chapter 3 lines 76 - 78

class(flights.data.ff)
dim(flights.data.ff)
dimnames.ffdf(flights.data.ff)

#first two lines succeed but third fails can't find function

#Chapter 3 line 106
Hmisc::describe(as.data.frame.ffdf(flights.data.ff$DISTANCE))

fails as.data.frame.ffdf -> could not find function

#load the library
library(ff)
#list all the function names inside ; including unexported
unclass(lsf.str(envir = asNamespace("ff"), all = T))
# does dimnames.ffdf appear in that list (i believe the output is in alphabetic order)
# if it is there do the commands you shared work ? #assuming you loaded  flights.data.ff ...
class(flights.data.ff)
dim(flights.data.ff)
dimnames.ffdf(flights.data.ff)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.