input <- read.table(header=F, text="abc 2
def 3
pq 2")
colnames(input) <- c("text","count")
我輸入的是文本及其在數據中出現的次數。 我想獲得將重複顯示計數的次數的文本行的輸出。我正在努力尋找任何可以輕鬆完成的功能。R - 根據計數器值創建行
預期輸出:
output <- read.table(header=F, text="abc 2
abc 2
def 3
def 3
def 3
pq 2
pq 2 ")
colnames(output) <- c("text","count")
任何幫助將不勝感激!
謝謝大家。我最終使用了David的解決方案。學習了很多不同的方法來實現輸出。 – 2014-09-03 14:06:59