R/read.fwf2.R

Defines functions read.fwf2

## File Name: read.fwf2.R
## File Version: 1.11


# This function reads fwf files
read.fwf2 <- function( file, format, variables=NULL)
{
    ff <- readLines( file )
    ind.ff1 <- c( 1, cumsum(format)[- length(format) ] + 1 )
    ind.ff2 <- cumsum(format)
    I <- length(format)
    n <- length( ff )
    dfr <- data.frame( matrix(0, nrow=n, ncol=I ) )
    for (ii in 1:I){
        dfr[,ii ] <- as.numeric( substring( ff, ind.ff1[ii], ind.ff2[ii] )  )
    }
    if (!is.null(variables)){
        colnames(dfr) <- variables
    }
    return(dfr)
}
alexanderrobitzsch/sirt documentation built on April 23, 2024, 2:31 p.m.