我正在尝试处理一个名为.TextGrid
(由 Praat 程序生成)的“分段文件”。)
原始格式如下所示:
File type = "ooTextFile"
Object class = "TextGrid"
xmin = 0
xmax = 243.761375
tiers? <exists>
size = 17
item []:
item [1]:
class = "IntervalTier"
name = "phones"
xmin = 0
xmax = 243.761
intervals: size = 2505
intervals [1]:
xmin = 0
xmax = 0.4274939687384032
text = "_"
intervals [2]:
xmin = 0.4274939687384032
xmax = 0.472
text = "v"
intervals [3]:
[...]
(然后将其重复到 EOF,间隔 [3 到 n] 用于文件中的 n 项(注释层)。
有人提出了 使用rPython R 包的解决方案。
很遗憾 :
- 我对 Python 没有很好的了解
- rPython 的版本不适用于 R.3.0.2(我正在使用)。
- 我的目标是专门在 R 环境下为我的分析开发这个解析器。
现在我的目标是将这个文件分割成多个数据框。每个数据框应包含一个项目(注释层)。
# Load the Data
txtgrid <- read.delim("./xxx_01_xx.textgrid", sep=c("=","\n"), dec=".", header=FALSE)
# Erase White spaces (use stringr package)
txtgrid[,1] <- str_trim(txtgrid[,1])
# Convert row.names to numeric
num.row<- as.numeric(row.names(txtgrid))
# Redefine the original textgrid and add those rows (I want to "keep them in case for later process)
txtgrid <- data.frame(num.row,txtgrid)
colnames(txtgrid) <- c("num.row","object", "value")
head(txtgrid)
的输出head(txtgrid)
非常原始,所以这里是 textgrid 的前 20 行txtgrid[1:20,]
:
num.row object value
1 1 File type ooTextFile
2 2 Object class TextGrid
3 3 xmin 0
4 4 xmax 243.761375
5 5 tiers? <exists>
6 6 size 17
7 7 item []:
8 8 item [1]:
9 9 class IntervalTier
10 10 name phones
11 11 xmin 0
12 12 xmax 243.761
13 13 intervals: size 2505
14 14 intervals [1]:
15 15 xmin 0
16 16 xmax 0.4274939687384032
17 17 text _
18 18 intervals [2]:
19 19 xmin 0.4274939687384032
20 20 xmax 0.472
现在我对它进行了预处理,我可以:
# Find the number of the rows where I want to split (i.e. Item)
tier.begining <- txtgrid[grep("item", txtgrid$object, perl=TRUE), ]
# And save those numbers in a variable
x <- as.numeric(row.names(tier.begining))
这个变量x
给了我数字1,我的数据应该被分成几个数据帧。
我有 18 个项目 -1 (第一项是 item[] 并包括所有其他项目。所以向量x
是:
x
[1] 7 8 10034 14624 19214 22444 25674 28904 31910 35140 38146 38156 38566 39040 39778 40222 44800
[18] 45018
我如何告诉 R:以这样的方式在多个数据帧中分割这个数据帧textgrids$nameoftheItem
,以便我获得与项目一样多的数据帧?,例如:
textgrid$phones
item [1]:
class = "IntervalTier"
name = "phones"
xmin = 0
xmax = 243.761
intervals: size = 2505
intervals [1]:
xmin = 0
xmax = 0.4274939687384032
text = "_"
intervals [2]:
xmin = 0.4274939687384032
xmax = 0.472
text = "v"
[...]
intervals [n]:
textgrid$syllable
item [2]:
class = "IntervalTier"
name = "syllable"
xmin = 0
xmax = 243.761
intervals: size = 1200
intervals [1]:
xmin = 0
xmax = 0.500
text = "ve"
intervals [2]:
[...]
intervals [n]:
textgrid$item[n]
我想用
txtgrid.new <- split(txtgrid, f=x)
但这条信息是正确的:
Warning message: In split.default(x = seq_len(nrow(x)), f = f, drop = drop, ...) : data length is not a multiple of split variable
我没有得到想要的输出,似乎行号没有相互跟随,而且文件都混在一起了。
我也尝试了一些which
, daply
(from plyr
) &subset
功能,但从未让它们正常工作!
我欢迎任何想法来正确有效地构建这些数据。理想情况下,我应该能够在它们之间链接项目(注释层)(不同层的 xmin 和 xmax),以及多个 textgrid 文件,这只是开始。