ReadStat.jl
ReadStat.jl copied to clipboard
Read files from Stata, SAS, and SPSS
[DocumentFormat.jl](https://github.com/julia-vscode/DocumentFormat.jl) would suggest these formatting changes
Hello. I am trying to use ReadStat.jl (through ReadStatTables.jl) to open a .dta file. Unfortunately, it does not seem to work with Julia 1.7.2 ARM. ``` using Pkg Pkg.activate("test") Pkg.add("HTTP")...
This PR continues the work in https://github.com/queryverse/ReadStat.jl/pull/46 It allows writing Tables.jl tables into the supported file formats. Metadata support is currently restricted to passing a file label only. Long strings...
As you know, Stata basically stores value-labeled data as a vector of integers or doubles, not necessarily an ordered sequence starting at `1`, and a `Dict` going from `Int =>...
Unfortunately, after importing the data from the sav file, there are no user missing values. They are all in the form of NA analogically to the missing system data. The...
Should be fairly simple to add support for reading a subset of rows only.
How to extract data and labels of column frm SAV file? Is posible convert to nativ Array of Julia ? Why my A.labels is empty ? julia> A=read_sav("test.sav") ReadStatDataFrame(Any[DataValues.DataValue{Float 2.0,...
I have a huge sas file which size is ~130G file. How do I read partial of data?