Loading head of sas7bdat table to Python or R -
i have exported tables sas in format sas7bdat , have no sas. these tables need checked contain expected varibales , datatypes. able it, need load fraction of these dataframes r or python.
for smaller tables, use
client_ft_lremm = pandas.read_sas("c:/users/okral001/documents/frm/ifrs9_esrte/client_ft_lremm.sas7bdat").head(10)
but still loads whole frame , select top 10.
reason size of of tables(more 17gb) exceeding ram, overloads , drops.
is there possibility load top 10 rows of sas7bdat table without loading whole tables ram?
thank you
you can use sas universal viewer (https://support.sas.com/downloads/package.htm?pid=712). windows application lets view sas data sets. have manually inspect them, should need.
Comments
Post a Comment