RE: [sportsci_rtutorial] New file uploaded to sportsci_rtutorial
Rob
I have run into a problem with manipulating a date vector. When I try to
cbind a date vector, it converts the date to a numerical vector. I think
this is because cbind creates a matrix, and matrix has to have numbers if I
remember correctly.
I have a friend who is really good with R and he showed me that this
represents the number of seconds since Jan 1, 1970. He was trying to convert
it with ISOdatetime and adding the number generated by cbind. This converts
it back to a date but we couldn't get it into a dataframe.
To take a step back so this in context, i'm working with a multi-relational
database. One table has all the injuries of athletes with the date of
injury. The other table has all the treatment dates for each injury. I'm
using a function to look at the treatment table and pull out the last
treatment date for each injury and I want to put this date into the
dataframe that has the list of injuries. This would give me one table for
injuries that includes the last treatment date as part of the table. The
date is then used to calculate number of days for the injury to heal, and
also will be used as the end-date when searching through a third table that
has exposures so I can count how many exposures from the injury start date
to end date.
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 17, 2007 3:29 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 20, 2007 3:46 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 21, 2007 9:09 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 23, 2007 10:13 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 27, 2007 4:27 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 28, 2007 11:07 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
May 31, 2007 4:26 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jun 3, 2007 5:37 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jun 5, 2007 6:06 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jun 8, 2007 1:17 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jun 23, 2007 5:49 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jul 11, 2007 11:50 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jul 15, 2007 9:12 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jul 18, 2007 8:59 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Jul 22, 2007 9:13 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Aug 2, 2007 1:12 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Aug 9, 2007 5:50 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the sportsci_rtutorial group. File :...
sportsci_rtutorial@ya...
Aug 16, 2007 7:36 pm
Rob I have run into a problem with manipulating a date vector. When I try to cbind a date vector, it converts the date to a numerical vector. I think this is...
Hi Ian, I have to confess that I'm not too familiar with the Date class. Anyway, from what I've picked up from the help files, Date objects are indeed...
Rob Thanks for the help. This works well enough. For the audience, I think those who use multi-relational databases might find my problem and solution helpful....