Re: [R] REPLACE and REMOVE fns

2007-04-04 Thread jim holtman
Does this do it? > x <- readLines("/temp/Giambi_03_post.txt") > x.in <- c("S", "D", "T", "HR", "O", "K", "E", "FL") > x.out <- c( 1, 1, 1, 1,0, 0, 0, 0) > # map the characters. Assume that missing will be deleted > x <- x.out[match(x, x.in)] > x <- x[!is.na(x)] > > x [1] 0 0 0 0

Re: [R] REPLACE and REMOVE fns

2007-04-04 Thread Tina Robles
See attached...sorry On 4/4/07, Uwe Ligges <[EMAIL PROTECTED]> wrote: Tina Robles wrote: > I want to use the replace function on "R_Jeter_04_post" (see attached) > so that S=1, D=1, T=1, HR=1, O=0, K=0, E=0, FC=0, and W,IW,and HP are > removed, so that i have a simple list of 1's and 0's. Th

Re: [R] REPLACE and REMOVE fns

2007-04-04 Thread Uwe Ligges
Tina Robles wrote: > I want to use the replace function on "R_Jeter_04_post" (see attached) > so that S=1, D=1, T=1, HR=1, O=0, K=0, E=0, FC=0, and W,IW,and HP are > removed, so that i have a simple list of 1's and 0's. There are just 0's and 1's in your attachment ... Uwe Ligges > I unders

[R] REPLACE and REMOVE fns

2007-04-03 Thread Tina Robles
I want to use the replace function on "R_Jeter_04_post" (see attached) so that S=1, D=1, T=1, HR=1, O=0, K=0, E=0, FC=0, and W,IW,and HP are removed, so that i have a simple list of 1's and 0's. I understand that I need to use the command "replace(x,list,values)" and "rm()" but I'm having trouble