Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

71
votes
5answers
45k views

MySQL Query GROUP BY day / month / year

Is it possible I make a simple query to count how many records I have in a determined period of time like a Year, month or day, having a TIMESTAMP field, like: SELECT COUNT(id) FROM stats WHERE ...
15
votes
4answers
5k views

grouping draggable objects with jquery-ui draggable

I want to use jquery draggable/droppable to let the user select a group of objects (each one has a checkbox in the corner) and then drag all the selected objects as a group... I can't figure out for ...
11
votes
6answers
15k views

Is there a “Group Box” equivalent in Java Swing?

Trying to build a GUI application in Java/Swing. I'm mainly used to "painting" GUIs on the Windows side with tools like VB (or to be more precise, Gupta SQLWindows... wonder how many people know what ...
10
votes
3answers
207 views

Minimum-Waste Print Job Grouping Algorithm?

I work at a publishing house and I am setting up one of our presses for "ganging", in other words, printing multiple jobs simultaneously. Given that different print jobs can have different ...
9
votes
8answers
3k views

Regex Group in Perl: how to capture elements into array from regex group that matches unknown number of/multiple/variable occurrences from a string?

In Perl, how can I use one regex grouping to capture more than one occurrence that matches it, into several array elements? For example, for a string: var1=100 var2=90 var5=hello var3="a, b, c" ...
8
votes
6answers
232 views

Creating sublists

The opposite of list flattening. Given a list and a length n return a list of sub lists of length n. def sublist(lst, n): sub=[] ; result=[] for i in lst: sub+=[i] if ...
8
votes
1answer
427 views

Algorithm to find optimal groups

A device contains an array of locations, some of which contain values that we want to read periodically. Our list of locations that we want to read periodically also specifies how often we want to ...
8
votes
2answers
3k views

Rails has_many association count child rows

What is the "rails way" to efficiently grab all rows of a parent table along with a count of the number of children each row has? I don't want to use counter_cache as I want to run these counts based ...
7
votes
3answers
521 views

TSQL Finding Order that occurred in 3 consecutive months

Please help me to generate the following query. Say I have customer table and order table. Customer Table CustID CustName 1 AA 2 BB 3 CC 4 DD Order Table OrderID ...
7
votes
4answers
4k views

WPF DataGrid Virtualization with Grouping

I'm using the WPF DataGrid from CodePlex and I need to get Virtualization to work with grouping. This question is on topic and points to an MSDN Example but it only covers ListControls with with ...
7
votes
2answers
15k views

WPF: Bind Collection with Collection to a ListBox with groups

sometimes WPF is too complex for me. I've got my "Window1" holding a collection of "Group"s. "Group" is a class with a collection of "Person"s. In the end this should be a contact list. What I simply ...
7
votes
3answers
5k views

LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system

I want to convert the following query into LINQ syntax. I am having a great deal of trouble managing to get it to work. I actually tried starting from LINQ, but found that I might have better luck ...
6
votes
2answers
111 views

Grouping a set of commits in Mercurial?

I'm working on a new feature branch. It's necessary to keep all the history, but for someone scouring over the history at a later date, much of it is over verbose. For example I may have 5 commits ...
6
votes
5answers
243 views

SQL: Is it possible to 'group by' according to 'like' function's results?

I am using Oracle SQL and I want to group some different rows that 'like' function results. To elaborate with an example: Let's assume I have a table MESA with one of the columns is a huge string. ...
6
votes
2answers
132 views

How can I tell if a set of parens in Perl code will act as grouping parens or form a list?

In perl, parentheses are used for overriding precedence (as in most programming languages) as well as for creating lists. How can I tell if a particular pair of parens will be treated as a grouping ...
6
votes
4answers
3k views

Silverlight: Datagrid like grouping in ItemsControl

Is it possible to group items in a ItemsControl or Listbox in Silverlight? These controls are bound to a DomainDataSource. Or are there any 3rd party controls that do this? UPDATE: This is the sort ...
6
votes
4answers
897 views

Algorithm to match preferred partners into groups of three

What's a good algorithm to solve this problem? I have three groups of people - group A, group B, and group C. There are the same number of people in each group. They each have a list of people in the ...
6
votes
3answers
7k views

How to set the Taskbar Grouping Icon

When my application opens too many windows the taskbar groups them into one button. Each window has its own icon, but the grouping icon is the default "unknown"-kind icon. How can I set the grouping ...
6
votes
3answers
296 views

Best generic strategy to group items using multiple criteria

I have a simple, real life problem I want to solve using an OO approach. My harddrive is a mess. I have 1.500.000 files, duplicates, complete duplicate folders, and so on... The first step, of ...
5
votes
1answer
77 views

pie chart of co-presence in clusters for about 10 factors in r

I've got a two-column dataset with about 30000 clusters and 10 factors like this: cluster-1 Factor1 cluster-1 Factor2 ... cluster-2 Factor2 cluster-2 Factor3 ... And I would like to represent the ...
5
votes
2answers
101 views

How to calculate correlation amongst preferences?

I have to split a group of x people into 3 or 4 groups, most likely 3. I want people to be happy, so I'm having each person rate the other members of the big group from 1 to (x-1). How do I ...
5
votes
1answer
140 views

Grouping Algorithm - Tournament

Looking for an algorithm, or code if someone's feeling generous to do the following. I need to take an input for a number of players. The number of players will always be a factor of 4. I want to ...
5
votes
3answers
221 views

grouping objects to achieve a similar mean property for all groups

I have a collection of objects, each of which has a numerical 'weight'. I would like to create groups of these objects such that each group has approximately the same arithmetic mean of object ...
5
votes
1answer
465 views

Grouping with drag and drop in WPF DataGrid

I want to add a "drop" area to the existing WPF DataGrid, above the column headers. In that area I want to allow the user to drop column headers that represent the columns to be grouped and to ...
5
votes
2answers
147 views

C# Algorithm to determine grouping of people based on a value

I'm attempting to write an algorithm that creates groups of people based on their 'score'. A person has two paramaters, a name and a score. (The range of the score is between -10 and 10 but that's ...
5
votes
2answers
128 views

How to group rules in jquery

Hi I've got a simple question. I've this code below, i use ajax three times in very similiar ways the only things that change are the data passed and the id of the target. Is there a way to group ...
5
votes
2answers
638 views

How can I hierarchically group data using LINQ?

I have some data that has various attributes and I want to hierarchically group that data. For example: public class Data { public string A { get; set; } public string B { get; set; } public ...
5
votes
5answers
5k views

Which SQL statement is faster? (HAVING vs. WHERE…)

SELECT NR_DZIALU, COUNT (NR_DZIALU) AS LICZ_PRAC_DZIALU FROM PRACOWNICY GROUP BY NR_DZIALU HAVING NR_DZIALU = 30 or SELECT NR_DZIALU, COUNT (NR_DZIALU) AS LICZ_PRAC_DZIALU FROM ...
5
votes
7answers
558 views

Ideal number of classes per namespace branch

What number of classes do you think is ideal per one namespace "branch"? At which point would one decide to break one namespace into multiple ones? Let's not discuss the logical grouping of classes ...
4
votes
4answers
76 views

Split list of datetimes into days

I've got a sorted list of datetimes: (with day gaps) list_of_dts = [ datetime.datetime(2012,1,1,0,0,0), datetime.datetime(2012,1,1,1,0,0), ...
4
votes
1answer
82 views

Plot levels as series

I have a data set that looks like this: id factor H1 H2 H3 H4 H5 H6 434543 lev3 0.8 0.7 0.7 0.5 0.6 0.8 434544 lev2 0.5 0.7 0.9 0.7 0.7 0.1 434545 lev3 0.7 0.7 0.8 0.5 0.7 0.7 ...
4
votes
6answers
295 views

Nested LINQ Query Question

I ran into an issue today and I have been stumped for some time in trying to get the results I am searching for. I currently have a class that resembles the following: public class ...
4
votes
2answers
201 views

XSLT group by half hour

Given this XML: <root> <row> <time>08:00</time> <sales>800</sales> </row> <row> <time>08:15</time> ...
4
votes
3answers
186 views

Can I use an anonymous type for this Linq grouping?

I have the following code which produces a dictionary containing multiple lists; each list can be retrieved with a numeric key. public class myClass { public string Group { get; set; } public ...
4
votes
2answers
249 views

grouping items in an iterable by looking for a sentinel value (in scala)

I have an iterator of lines from a very large file that need to be put in groups as I move along. I know where each group ends because there is a sentinel value on the last line of each group. So ...
4
votes
3answers
232 views

An algorithm for sorting & grouping a list of weighted objects

I have a number of chunks of data. For arguments sake we'll say they are File 1 - 150Kb File 2 - 50Kb File 3 - 70Kb File 4 - 60Kb File 5 - 70Kb File 6 - 100Kb File 7 - 90Kb For transmission, ...
4
votes
6answers
360 views

SQL Server - Top Saleperson Per Region

SELECT region, person, sum(dollars) as thousands FROM sales GROUP BY region, person ORDER BY region, sum(dollars) desc The SQL above produces a complete list of sales people per ...
4
votes
3answers
2k views

Java : replacing text URL with clickable HTML link

I am trying to do some stuff with replacing String containing some URL to a browser compatible linked URL. My initial String looks like this : "hello, i'm some text with an url like ...
4
votes
3answers
1k views

Grouping controls together on an Access form

I have an Access2003 form where I wanted to group several controls together and change visibility programatically, though VBA code. Is this possible? I do know that I can group items through Format ...
4
votes
3answers
763 views

How to group items by index? C# LINQ

Suppose I have var input = new int[] { 0, 1, 2, 3, 4, 5 }; How do I get them grouped into pairs? var output = new int[][] { new int[] { 0, 1 }, new int[] { 2, 3 }, new int[] { 4, 5 } }; ...
4
votes
4answers
496 views

How do I create a text file so when it is opened in Excel, rows are grouped together?

I'm collecting some data via a Perl script. The data needs to be reviewed and processed by others using Excel. Currently, I'm writing the data out as a tab-delimited text file, and Excel can open ...
3
votes
3answers
42 views

Wrapping consecutive list items in separate groups using jQuery

I have an unordered list exported by a CMS and need to identify <li> elements that have the class .sub and wrap them in a <ul>. I have tried the wrapAll() method but that finds all <li ...
3
votes
2answers
72 views

Finding similar records in LINQ

I have the following LINQ query, which will be used to find any consignments that are 'similar': from c in cons group c by new { c.TripDate.Value, c.DeliveryPostcode, c.DeliveryName } into cg let min ...
3
votes
2answers
45 views

Group by values from 4 a.m to 4 a.m SQL Server

I have data from 04/01/2012 00:00 to 05/01/2012 05:00 let say StartDate Value 04/01/2012 00:00 10 04/01/2012 05:00 10 04/01/2012 08:00 10 05/01/2012 01:00 ...
3
votes
2answers
92 views

Analog of 'ave' in plyr?

R's ave() function is way more useful than its name suggests - it's basically a version of tapply() that lets you return a vector the same length as the input, and slots those values back into the ...
3
votes
2answers
48 views

summing nodes' values grouping by pattern of other nodes' values

The set-up I have an XML file with (this is simplified from actual): <feeds xmlns...> <feed> <week> <start-date>...</start-date> ...
3
votes
2answers
55 views

CSS - which code renders faster and is more efficient?

I would like to know which of below codes renders faster and is more efficient: This - body{background:#ddd;font-family:verdana;font-size:12px;color:#808080;} ...
3
votes
1answer
164 views

selecting all the fields in a row using mapReduce

I am using mongoose with nodejs. I am using mapReduce to fetch data grouped by a field.So all it gives me as a collection is the key with the grouping field only from every row of database. I need to ...
3
votes
2answers
94 views

Querying and grouping in mongoDb?

Part 1: I have (student) collection: { sname : "", studentId: "123" age: "", gpa: "", } im trying to get only two keys from it : { sname : "", studentId: "123" } so i ...
3
votes
1answer
32 views

Solutions for grouping and managing many different in-memory indexes

I have a list of Person objects, currently I use 5 different instances of associative structures (std::map/multimap, std::unordered_map) to provide efficient queries for various kinds of static ...

1 2 3 4 5 14