我试图从文本文件中提取字母频率。我希望它创建两列。
例如,文本文件可能包含" aabbbbccc"。
我希望输出为......
Key Count
a 2
b 4
c 3
这是我现在所拥有的。我确定它错了......
mydata3 <- read.table("/Users/ChristopherFlach/Documents/ds710fall2016assignment6/encryptedA.txt", header = FALSE)
as.data.frame(table(strsplit(mydata3,"")))
attach(mydata3)