Re: [R] creating a vector from a file

2011-05-31 Thread heimat los
On Tue, May 31, 2011 at 5:14 PM, David Winsemius wrote: > > On May 31, 2011, at 10:38 AM, David Winsemius wrote: > > >> On May 31, 2011, at 10:19 AM, heimat los wrote: >> >> On Tue, May 31, 2011 at 4:12 PM, Matt Shotwell >>> wrote: >>> >>> On Tue, 2011-05-31 at 15:36 +0200, heimat los wrote: >>

Re: [R] creating a vector from a file

2011-05-31 Thread David Winsemius
On May 31, 2011, at 10:38 AM, David Winsemius wrote: On May 31, 2011, at 10:19 AM, heimat los wrote: On Tue, May 31, 2011 at 4:12 PM, Matt Shotwell wrote: On Tue, 2011-05-31 at 15:36 +0200, heimat los wrote: Hello all, I am new to R and my question should be trivial. I need to create

Re: [R] creating a vector from a file

2011-05-31 Thread Matt Shotwell
On Tue, 2011-05-31 at 16:19 +0200, heimat los wrote: > On Tue, May 31, 2011 at 4:12 PM, Matt Shotwell > wrote: > On Tue, 2011-05-31 at 15:36 +0200, heimat los wrote: > > Hello all, > > I am new to R and my question should be trivial. I need to > create a word >

Re: [R] creating a vector from a file

2011-05-31 Thread Jonathan Daily
So you need to read a file into R in that format? Try changing the values in ?read.table. Using the example, I was able to get the data using: read.table("clipboard", sep = "=", header = F, colClasses = c("character", "numeric")) On Tue, May 31, 2011 at 10:19 AM, heimat los wrote: > On Tue, Ma

Re: [R] creating a vector from a file

2011-05-31 Thread David Winsemius
On May 31, 2011, at 10:19 AM, heimat los wrote: On Tue, May 31, 2011 at 4:12 PM, Matt Shotwell wrote: On Tue, 2011-05-31 at 15:36 +0200, heimat los wrote: Hello all, I am new to R and my question should be trivial. I need to create a word cloud from a txt file containing the words and t

Re: [R] creating a vector from a file

2011-05-31 Thread heimat los
On Tue, May 31, 2011 at 4:12 PM, Matt Shotwell wrote: > On Tue, 2011-05-31 at 15:36 +0200, heimat los wrote: > > Hello all, > > I am new to R and my question should be trivial. I need to create a word > > cloud from a txt file containing the words and their occurrence number. > For > > that purpo

Re: [R] creating a vector from a file

2011-05-31 Thread Matt Shotwell
On Tue, 2011-05-31 at 15:36 +0200, heimat los wrote: > Hello all, > I am new to R and my question should be trivial. I need to create a word > cloud from a txt file containing the words and their occurrence number. For > that purposes I am using the snippets package [1]. > As it can be seen at the

[R] creating a vector from a file

2011-05-31 Thread heimat los
Hello all, I am new to R and my question should be trivial. I need to create a word cloud from a txt file containing the words and their occurrence number. For that purposes I am using the snippets package [1]. As it can be seen at the bottom of the link, first I have to create a vector (is that ri