1
A
回答
12
設置一些數據:
text <- "Can you please give me a hint on what's the best and easiest way to compute the absolute and relative frequencies of vowels in a string using R?
I guess the source code is a bit different from what I've found so far in the forum concerning Java.
Any help is appreciated."
分析它:
x <- tolower(strsplit(text, "")[[1]])
x <- x[x %in% letters]
絕對頻率:
table(x)
x
a b c d e f g h i j l m n o p q r s t u v w y
19 3 8 6 29 8 5 8 17 1 5 4 16 14 5 1 11 16 17 9 5 4 3
相對頻率:
table(x)/length(x)
x
a b c d e f g h i
0.088785047 0.014018692 0.037383178 0.028037383 0.135514019 0.037383178 0.023364486 0.037383178 0.079439252
j l m n o p q r s
0.004672897 0.023364486 0.018691589 0.074766355 0.065420561 0.023364486 0.004672897 0.051401869 0.074766355
t u v w y
0.079439252 0.042056075 0.023364486 0.018691589 0.014018692
相關問題
- 1. 計算R中頻率的百分比
- 2. 計算頻率
- 3. 計算頻率
- 4. [R染色體頻率計算
- 5. 使用FFT計算聲音輸入的頻率
- 6. 計算R中列表元素的數量和頻率?
- 7. 使用R來計算單詞頻率的文本挖掘
- 8. 如何使用R計算項目集的頻率?
- 9. 使用table()來計算因子的頻率r
- 10. 使用r計算文本中n-gram的頻率
- 11. 計算數組中元素的頻率
- 12. Python - 獨特元素的計算頻率
- 13. Android,如何使用麥克風來計算聲音頻率?
- 14. 計算R中的頻率和項數的比率?
- 15. R,的「計數頻率」
- 16. R:統計/計算效率
- 17. 使用WebAudio API計算現場麥克風音頻頻率的簡單代碼
- 18. 對於分組頻率數據R中的計算密度()R
- 19. 使用indsname計算變量頻率
- 20. 使用Python計算數字頻率
- 21. 使用函數計算字符(頻率)
- 22. 計算事件的頻率
- 23. R:計數頻率在levelplot
- 24. [R計數頻率有效
- 25. 如何計算比特率用於非壓縮音頻文件
- 26. 計算錯誤率R
- 27. 動態計算頻率值?
- 28. 計算結點頻率
- 29. 期限頻率計算
- 30. 計算頻率的有效算法?
您能否給我一個關於您的數據是什麼樣的以及您已經嘗試過的提示? – Andrie
你好Andrie, 不是太多,因爲我對R很新,並且沒有編程經驗。 我們已經像一個句子 我們首先引起的使用子串函數字母數:SEQ(1 字母=串(S,(S),1),SEQ(1(S),的nchar,NCHAR 1)) 現在我們正在爲每個循環提取字符串中的每個元音的頻率 ,例如: for int i = 0;我
{if(x [[i]] =='a'|| =='A')a ++; .. –