R/parseLTP.R

Defines functions parseLTP

parseLTP = function(result)
{
    result = strsplit(result,'\n\n')[[1]]
    result = sapply(result,strsplit,'\n')
    names(result) = NULL
    result = unlist(result)
    result = strsplit(result,' ')
    result = unlist(result)
    result
}
hetong007/rLTP documentation built on May 17, 2019, 3:43 p.m.