All Projects → queryverse → ReadStat.jl

queryverse / ReadStat.jl

Licence: MIT license
Read files from Stata, SAS, and SPSS

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to ReadStat.jl

DataValues.jl
Missing values for julia
Stars: ✭ 14 (-80.82%)
Mutual labels:  queryverse
ExcelFiles.jl
FileIO.jl integration for Excel files
Stars: ✭ 42 (-42.47%)
Mutual labels:  queryverse
DataVoyager.jl
Julia wrapper for the Voyager data exploration tool
Stars: ✭ 106 (+45.21%)
Mutual labels:  queryverse
ParquetFiles.jl
FileIO.jl integration for Parquet files
Stars: ✭ 18 (-75.34%)
Mutual labels:  queryverse

ReadStat

Project Status: Active - The project has reached a stable, usable state and is being actively developed. Build Status Build status codecov

Overview

ReadStat.jl: Read files from Stata, SPSS, and SAS

The ReadStat.jl Julia package uses the ReadStat C library to parse binary and transport files from Stata, SPSS and SAS. All functions return a ReadStatDataFrame whose fields hold the various informations contained in the passed file (column names, column data, labels, formats...).

For integration with packages like DataFrames.jl you should use the StatFiles.jl package.

Usage:

using ReadStat

read_dta("/path/to/something.dta")

read_por("/path/to/something.por")

read_sav("/path/to/something.sav")

read_sas7bdat("/path/to/something.sas7bdat")

read_xport("path/to/something.xpt")

Installation

To install the package, run the following:

Pkg.add("ReadStat")
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].