powered by
Convert Eprime Frames into data-frames
to_data_frame(x)
all of the EprimeFrames combined into a single data frame.
an EprimeFrame object, or a FrameList object (a list of EprimeFrames)
Individual EprimeFrames are converted to a data-frame using as.data.frame(). (Strings are not converted to factors.)
as.data.frame()
Each of the individual data-frames are then rbind()-ed together, with missing columns being filled with NA.
rbind()
plyr::rbind.fill()