haven

Read SPSS, Stata and SAS files from R

  • 所有者: tidyverse/haven
  • 平台:
  • 许可证: Other
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

haven

CRAN
status
Travis build
status
AppVeyor build
status
Codecov test
coverage

Overview

Haven enables R to read and write various data formats used by other
statistical packages by wrapping the fantastic
ReadStat C library written by
Evan Miller. Haven is part of the
tidyverse. Currently it supports:

  • SAS: read_sas() reads .sas7bdat + .sas7bcat files and
    read_xpt() reads SAS transport files (version 5 and version 8).

  • SPSS: read_sav() reads .sav files and read_por() reads the
    older .por files. write_sav() writes .sav files.

  • Stata: read_dta() reads .dta files (up to version 15).
    write_dta() writes .dta files (versions 8-15).

The output objects:

  • Are tibbles, which have a better
    print method for very long and very wide files.

  • Translate value labels into a new labelled() class, which
    preserves the original semantics and can easily be coerced to
    factors with as_factor(). Special missing values are preserved.
    See vignette("semantics") for more details.

  • Dates and times are converted to R date/time classes. Character
    vectors are not converted to factors.

Installation

# The easiest way to get haven is to install the whole tidyverse:
install.packages("tidyverse")

# Alternatively, install just haven:
install.packages("haven")

# Or the the development version from GitHub:
# install.packages("devtools")
devtools::install_github("tidyverse/haven")

Usage

library(haven)

# SAS
read_sas("mtcars.sas7bdat")
write_sas(mtcars, "mtcars.sas7bdat")

# SPSS
read_sav("mtcars.sav")
write_sav(mtcars, "mtcars.sav")

# Stata
read_dta("mtcars.dta")
write_dta(mtcars, "mtcars.dta")
  • foreign reads from SAS
    XPORT, SPSS, and Stata (up to version 12) files.

  • readstat13 reads
    from and writes to all Stata file format versions.

  • sas7bdat reads from
    SAS7BDAT files.

Code of Conduct

Please note that the haven project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

主要指标

概览
名称与所有者tidyverse/haven
主编程语言C
编程语言R (语言数: 5)
平台
许可证Other
所有者活动
创建于2015-02-04 16:28:17
推送于2025-05-30 14:18:17
最后一次提交
发布数24
最新版本名称v2.5.5 (发布于 )
第一版名称v0.1.0 (发布于 )
用户参与
星数436
关注者数21
派生数116
提交数832
已启用问题?
问题数633
打开的问题数55
拉请求数110
打开的拉请求数3
关闭的拉请求数30
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?