Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've the following query

 var x = from t in v
                    group t by t.Time.Year + "-" t.Time.Month + "-" + 
                      t.Time.Day + " " t.Time.Hour + ":" + t.Time.Minute into g
                    select new { Tag = g.Key, Frequency = g.Count() };

t.Time is a DateTime. The above smells a bit i.m.o. Are there any clean way to group by intervals based on DateTimes ?

Edit: What I don't quite like about this is the string fiddling and producing a string. Ideally I'd like to produce a DateTime out of the group, not a string.

share|improve this question
You can better replicate that formatting with dateTime.ToString("yyyy-MM-dd HH:mm"). make sure you use upper case "H" for 24 hour, otherwise you'll be grouping AM and PM together... – Rob Fonseca-Ensor Feb 8 '10 at 22:46

5 Answers

up vote 7 down vote accepted

Seems what I really wanted was

group t by
 new DateTime(t.Time.Year,t.Time.Month,t.Time.Day ,t.Time.Hour,t.Time.Minute,0) 
into g

None of the suggestiions involving Add/Subtract works for me, even if I also set the miliseconds to +.

dateTime.ToString("yyyy-MM-dd HH:mm") is a nice alternative to the strinc concatenation if I need a string though.

share|improve this answer

something like

group t by t.AddSeconds(60- t.Time.Seconds) // rounds to nearest minute
share|improve this answer
this will break for milisseconds values – Rubens Farias Feb 8 '10 at 23:00
Doesn't work. Even when I zero out the miliseconds the query yields a ton of similar DateTimes - it doesn't group them. – leeeroy Feb 8 '10 at 23:07

What about this:

DateTime[] v = new DateTime[]
{
    new DateTime(2010, 01, 01, 01, 01, 00, 100),
    new DateTime(2010, 01, 01, 01, 01, 30, 200),
    new DateTime(2010, 01, 01, 02, 01, 00, 300),
    new DateTime(2010, 01, 01, 03, 01, 45, 400)
};

var x = from t in v
        //group t by t.ToString("yyyy-MM-dd HH:mm") into g
        group t by t.AddSeconds(-t.TimeOfDay.TotalSeconds % 60) into g
        select new { Tag = g.Key, Frequency = g.Count() };

EDIT: changed to .AddSeconds, per @Colin suggestion

share|improve this answer
It's atleast cleaner. I'd like to produce a DateTime though instead of a string. – leeeroy Feb 8 '10 at 22:49

There are 600,000,000 ticks in a minute, so you could do something like this in order to group by the nearest minute:

var x = from t in v
        group t by new DateTime(t.Time.Ticks - (t.Time.Ticks % 600000000)) into g
        select new { Tag = g.Key, Frequency = g.Count() };
share|improve this answer
var x = from t in v
group t by t.Time.Date.AddMinutes((Int32)t.Time.TimeOfDay.TotalMinutes) into g
   select new { Tag = g.Key, Frequency = g.Count() };
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.