我有一个包含一个段落的输入文件。我需要找到该段落中特定单词的频率。
猫文件:
Text Index
train is good 1
let the train come 5
train is best 3
i m great 3
what is best 2
代码:
input<-read.table("file",sep="\t",header=TRUE)
paragraph1<-input[1][1]
word<-"train"
我需要在第 1 段中找到单词“train”的频率。我怎样才能使用 R 获得它?