Search Results

1
vote
1answer
92 views

Converting a localized date of the form 12-okt-2007

Hi, I have imported a time series with dates of the following format: test = c("11-Feb-01","12-Feb-01","01-Mai-08") This yields: > as.D …
2
votes
2answers
150 views

How do i deal with time intervals like 08:00-08:15

Hi, I would like to import a time-series where the first field indicates a period: 08:00-08:15 08:15-08:30 08:30-08:45 Does R have any features to do this …
1
vote
1answer
205 views

csv file with multiple time-series

Hi I've imported a csv file with lots of columns and sections of data. v <- read.csv2("200109.csv", header=TRUE, sep=",", skip="6", na.strings=c("")) Th …
1
vote
3answers
171 views

Dealing with time-periods such as 5 minutes and 30 seconds in R

Hi, Is there a good way to deal with time periods such as 05:30 (5 minutes, 30 seconds) in R? Alternatively what's the fastest way to convert it into an integer with just seconds? …
1
vote

Converting a localized date of the form 12-okt-2007

The closest thing I've found to a solution is to make multiple iterations over the data to replace the names of the months with something that can be parsed. I'm not sure if this is the bes …