get.frames {readstata13} | R Documentation |
List frames in Stata dtas files
Description
Stata 18 introduced framesets (file extension '.dtas') that contain zipped 'dta' files. This helper functions imports those files and returns a list of data.frames.
Usage
get.frames(path)
Arguments
path |
path to .dtas file |
Value
Returns a data.frame with frame names, internal filenames and dta file format version.
Examples
path <- system.file("extdata", "myproject2.dtas", package="readstata13")
# print all frames in myproject2.dtas
get.frames(path)
[Package readstata13 version 0.11.0 Index]