Using R, I converted a frequency table (created using the table()
function) to a data-frame. My data frame now looks as follows:
words frequency
1 'home' 1
2 'paper' 5
3 'letter' 6
Now I want to convert this data frame back into a table()
object.
How?
You can try this