store_file: Export a modified data set as an SPSS readable .sas file

View source: R/store_file.r

store_fileR Documentation

Export a modified data set as an SPSS readable .sas file

Description

This function exports all subsets in the specified av_state to individual output files. All output files are subsequently packed in a .tar file. Data sets with less than 80 columns are stored inline in the .sas script, otherwise, the data is stored in separate files.

Usage

store_file(av_state, filename, inline_data, file_type = c("SPSS", "STATA"))

Arguments

av_state

an object of class av_state

filename

the name that the exported files should be saved under. Do not include a path. When this argument is missing, the filename of the input file (used in load_file) is substituted.

inline_data

boolean argument to determine whether data should be stored inline in the .sas script. This argument is optional, and defaults to TRUE if the data set has less than 80 columns, and to FALSE otherwise.

file_type

sets the type of file export that should be used. Currently, only 'SPSS' is supported.

Examples

## Not run: 
av_state <- load_file("../data/input/ID68 basisbestand.sav",log_level=3)
av_state <- add_trend(av_state)
av_state <- set_timestamps(av_state,date_of_first_measurement="2012-07-12",
                           measurements_per_day=3,log_level=3)
store_file(av_state)

## End(Not run)

roqua/autovar documentation built on Jan. 21, 2023, 7:37 p.m.