Re: [R] Frequency count of terms only in a given column in R

2015-08-31 Thread PIKAL Petr
2015 5:16 PM > To: Sarah Goslee; agrima seth > Cc: r-help > Subject: Re: [R] Frequency count of terms only in a given column in R > > Dear Agrima > > As well as Sarah's seven possibilities an eighth occurs to me: you have > not yet read it into R in the first place. If that

Re: [R] Frequency count of terms only in a given column in R

2015-08-28 Thread Michael Dewey
Dear Agrima As well as Sarah's seven possibilities an eighth occurs to me: you have not yet read it into R in the first place. If that is the case you may be able to use read.table to get it into a data frame with columns corresponding to your words. ?read.table may be your friend here. On

[R] Frequency count of terms only in a given column in R

2015-08-28 Thread agrima seth
i have a text file with data of the given format: white snow lived snow in snow lived place in place a place called place as place here i have to find the frequency of the terms only in the first column (i.e.) white - 1 lived- 2 in -2 a-1 called - 1 as -1 Could you please guide me how to do the

Re: [R] Frequency count of terms only in a given column in R

2015-08-28 Thread Sarah Goslee
Hi, On Fri, Aug 28, 2015 at 7:49 AM, agrima seth sethagr...@gmail.com wrote: i have a text file with data of the given format: white snow lived snow in snow lived place in place a place called place as place That doesn't specify the format. I can think of at least seven things that