Re: [R] data frame manipulation - splitting monitoring interval and assigning stage

2008-06-26 Thread Jessi Brown
I'd like to thank those who contacted me with ideas on how to solve this little problem. I learned something from looking through each snippet of code, even if it wasn't doing quite what I'd hoped it would do. Mark Leeds deserves special thanks, for helping me debug my several attempts to improve

[R] data frame manipulation - splitting monitoring interval and assigning stage

2008-06-25 Thread Jessi Brown
Hello, everyone. I'm hoping to prevent myself from doing a lot of pointing and clicking in Excel. I have a dataframe of bird nest check observations, in which I know the date of the first check, the date of the second check (both currently in Julian date format), the status of the nest at the

Re: [R] data frame manipulation - splitting monitoring interval and assigning stage

2008-06-25 Thread jim holtman
Is this what you want: x - read.table(textConnection(Check1 Check2 HatchDate + 101 121 110 + 130 150 140 + 140 150 160), header=TRUE) closeAllConnections() x Check1 Check2 HatchDate 1101121 110 2130150 140 3140150 160