我有一个原始文本文件,格式如下:
RELEASE VERSION:20150514(2015年5月14日)
=============================================== =========================版本
研究变量:版本号发布
问题: ---------累积数据文件的版本
注意: ------此变量在数据中显示为: ANES_cdf_VERSION:YYYY-mmm-DD其中mmm是标准的3个字符月份缩写(1月2月3月4月5月6月7月8月9月10月11月11月)。
TYPE: -----字符-1
=============================================== ========================= VCF0004
研究变量:研究年度
问题: ---------学习年份(4位数)
TYPE: -----数字12月0-1
=============================================== ====================== VCF0006 ... 等等
观察以“=”行为界,每个观测都有一定数量的变量(并非所有变量都可以呈现)
我正在尝试创建一个数据表。
我创建了一个观察向量,在每个观察列中用“|”分隔。然后我使用fread来制作数据表:
dt <- fread(paste(rawObs, collapse = '\n'),sep = '|',header = F, fill = T)
但是,这不是一个真正的解决方案。 Fill = T仅考虑观察结束时的缺失列,而不是之间:
在我们的示例中,它应该是:
id | study_var | question | notes | type
version | s1 | q1 | notes1 | character-1
VCF0004 | s2 | q2 | NA | numeric
但是R将其创建为
id | study_var | question | notes | type
version | s1 | q1 | notes1 | character-1
VCF0004 | s2 | q2 | numeric | NA
第二次观察的类型向左移动。作为一个解决方案,我正在考虑确定每个观察中缺少的列,并使用找到的最大变量数在输入文件中显式插入NAs,但对于大文件可能会很慢。
感谢您的帮助。任何评论都表示赞赏。 这是所有代码:
library(magrittr)
library(data.table)
path <- 'Downloads/anes_timeseries_cdf_codebook_var.txt'
raw_data <- readLines(path)
head(raw_data)
#remove empty lines
raw_data <- raw_data[raw_data != ""]
#remove header
raw_data <- raw_data[-c(1,2)]
data_entries_index <- grep('^=+', raw_data)+1
#add end position of the last observation
data_entries_index <- c(data_entries_index, length(raw_data))
#opening file shows editor couldn't read two characters - we can ignore it though
data_entries_index
parseRawObservation <- function(singleRawObs, VariableIndex){
count=length(VariableIndex)-1
for (i in 1:count){
start = VariableIndex[i]+2
end = VariableIndex[i+1]-1
varValue <- paste(singleRawObs[start:end],collapse = ' ')
if (i==1)
obsSpaced <- varValue
else
obsSpaced <- paste(obsSpaced,varValue, sep = '|')
}
obsSpaced
}
#create a vector of raw observations
numObs <- length(data_entries_index)
count=numObs-1
rawObs=vector()
for (i in 1:count) {
start <- data_entries_index[i]
end <- data_entries_index[i+1]-2
singleRawObs <-raw_data[start:end]
VariableIndex <- grep("^-+",singleRawObs)-1
#add end of the last variable index
VariableIndex <- c(VariableIndex, length(singleRawObs)+1)
rawObs[i] <- parseRawObservation(singleRawObs,VariableIndex)
#add first two columns separately as they do not have dashes at the next line
rawObs[i] <- paste(singleRawObs[1], singleRawObs[2], rawObs[i], sep = '|')
}
#determine max number of fields
numOfCol <- max(sapply(rawObs, FUN = function(x) length(strsplit(x,'|')[[1]])))
which.max(sapply(rawObs, FUN = function(x) length(strsplit(x,'|')[[1]])))
dt <- fread(textConnection(rawObs),sep = '|',header = F)
dt <- fread(paste(rawObs[1:2], collapse = '\n'),sep = '|',header = F, fill = T)
rawObs[653]
答案 0 :(得分:0)
有一种方便的替代方法可以读取像这样的文件:read.dcf()
。
read.dcf()
以Debian控制格式(DCF)读取文件,其中包含常规的tag:value
行格式。记录由一个或多个空行分隔。
但是,需要修改输入文件以符合DCF格式(加上一些额外的修改以满足OP的预期结果):
=
条纹需要替换为多个空行和缺少的标记id:
。RELEASE VERSION:
的第一行,以符合OP的预期。 以下代码假定原始文本文件名为"raw.txt"
。
library(data.table)
library(magrittr)
# read raw file, skip first row
raw <- fread("raw.txt", sep = "\n", header = FALSE, skip = 1L)
# replace streaks of "=" and "-"
raw[, V1 := V1 %>%
stringr::str_replace("[=]+", "\n\nid:") %>%
stringr::str_replace(": [-]+", ": ")][]
# now read the modified data using DCF format skipping empty rows
dt <- as.data.table(read.dcf(textConnection(raw[V1 != "", V1])))
dt
id STUDY VARIABLE QUESTION 1: VERSION Version Number Of Release Version of Cumulative Data File 2: VCF0004 Year of Study Year of study (4-digit) 3: VCF0006 NA NA NOTES 1: This variable appears in the data as: ANES_cdf_VERSION:YYYY-mmm-DD [...] 2: NA 3: NA TYPE 1: Character-1 2: Numeric Dec 0-1 3: NA