Aggregation is a relationship between two classes that is best described as a "has-a" and "whole/part" relationship.
0
votes
0answers
6 views
WSO2 Aggregator with 2 HL7 messages
I am trying to aggregate the response of 2 services, both the responses are in HL7 format.
but after aggregation the first message is getting in the output.
Please help me to resolve this problem.
...
0
votes
2answers
29 views
should I use aggregation in this case?
In the case that I have a class called Payment that it is a superclass of another class named Card, how can I join that class with another that verifies if the card is valid.
My UML diagram would be ...
1
vote
0answers
19 views
Django ORM - Sum of calculated time differences in a list
Python newbie here... I have a bunch of RoomBooking events with a start and stop time in my Django model, and I need to retrieve the total duration of every event within a month, grouped by company. ...
0
votes
1answer
37 views
Association, Aggrgation and Composition in UML Diagram
So I have some question about the association, aggregation and composition in UML diagram. Here is some scenarios :
Product review rating composition to product review. This means that for each ...
0
votes
4answers
67 views
WSO2 ESB Aggregate from different responses
I am bit confused with WSO2 ESB aggregator mediator.
I need to send three messages to different systems via WebServices, but the three systems have different message formats, so i need to transform ...
0
votes
2answers
35 views
a query to find duplicates but exclude set
I have a table with following columns
Emp_id
Work_date
element
I want a query (modified version of below query) which will return a single row if there are more than 1 row for given work_date and ...
1
vote
1answer
37 views
Is it possible to group and sum multiple columns with MongoDB's aggregation framework?
Given this MongoDB collection:
[
{ character: 'broquaint', race: 'Halfling', class: 'Hunter' },
{ character: 'broquaint', race: 'Halfling', class: 'Hunter' },
{ character: 'broquaint', race: ...
0
votes
2answers
35 views
Updating and sharing a variable between 3 classes
Edit I've tried to make my question clearer.
I have a MyGLRendering class as below in which I have a method from which I do all my logic updating. As you can see I'm accessing my sprite's X ...
0
votes
1answer
37 views
repeatable blocks with range in oracle
Please find the below table. The entire data is within DOCSTART and DOCEND. The data is further enclosed within BACCSTART and BACCEND. This type of block is repeatable. I have to pick up any of ABCD ...
0
votes
1answer
59 views
Slickgrid - dataView.setGrouping is not a function
I am trying to follow the code in the example:
http://mleibman.github.io/SlickGrid/examples/example-grouping
I am getting the error:
dataView.setGrouping is not a function
Am I missing a js ...
2
votes
2answers
44 views
Composition vs Aggregation
Let us say I have a car class and paint class(which consists of different colors). Now In terms of Object oriented design what can be the relation between these two classes is it composition or ...
0
votes
1answer
46 views
Problems with aggregation in MongoDB
Im trying to learn how to make sql like queries in Mongo and found this aggregation framework, when i run the code the average always turns out "0" all though the 'columns' have numbers in them, if i ...
1
vote
1answer
27 views
Return values for X and Y where X-Y = Max(X-Y)
(SQL SERVER 2005)
I have a table of multiple products that relate to an ItemCode. I can establish the best saving using the query below (I think) but what I need to include are the RRP and ...
0
votes
1answer
26 views
How to project the $in operator as a boolean in mongodb?
feed = coll.aggregate([
{'$project' :{'Upvoted' :
{'Upvoters' : {'$in' : [ObjectId(userid)]} }}},
{'$match' :{ '$or': [ {"_id": ObjectId(userid) }, {"Friends": ...
0
votes
1answer
54 views
Google visualization data grouping
I have a sample Google visualization dashboard with two controls and two column charts in which the second column chart is drawn using the aggregation of data table as,
'dataTable' : ...
0
votes
1answer
39 views
Can there be more than one set of MFA questions asked during the discoverAndAddAccounts process?
I am using discoverAndAddAccountsResponse to answer the first set of MFA challenge questions, but this method only returns an AccountList.
Is there ever a situation where I should expect more MFA ...
0
votes
2answers
26 views
Object Oriented Aggregation/Association is not working
I am trying to call my class in another class, it calls the class but when i use class variable to use its method it doesn't show any. Kindly tell me where i am doing mistake.
class Course
{
...
0
votes
0answers
20 views
How to put the following through mongoexport?
I have the following query, where I must reformat the output in javascript:
db.my_items.aggregate({
$match: {
// ...
}
},{
$project: {
_id: 0,
myField: 1
}
...
0
votes
1answer
29 views
MongoDB: is there a way to tweak the output?
For the following command:
db.my_items.aggregate({
$match: {
// ...
}
},{
$project: {
_id: 0,
myField: 1
}
}).result.forEach(function(obj) {
...
0
votes
1answer
41 views
Frequency of non-unique instances while conditioning on groups within and across data frames
I am analyzing employment data containing information about the firms that individuals worked for in a given year, with each year being a separate data frame.
I want to be able to quickly identify ...
0
votes
0answers
18 views
Avoid manual contacts aggregation between my application and the Android contacts application
I'm looking for a way to avoid the manual contacts aggregation. Let me show you what I want to do with a simple example.
My application is well-synced with the Android Contacts application so the ...
1
vote
2answers
29 views
PHP aggregation of a property, of all objects in a class
apologies in advance for being a OO noob...
I am trying to write a method to aggregate a property of all objects that exist for a given class. The code below describes what I want to do.
Class ...
1
vote
1answer
25 views
MongoDB find documents that matches either any of the conditions specified using aggregation
I'm creating a text-search function in datatable using aggregation.
$ops = array(
array(
'$match' => array(
"status" => "A", ...
-1
votes
1answer
30 views
Mysql : Aggregation function is not working without group by
I am using following query
SELECT count(*) as num,id,page_name FROM project_page where p_id = '256'
this query is running fine on mysql version 5.1.49-3 and giving error on mysql ...
1
vote
0answers
51 views
Cypher WITH aggregation in query
I have a Cypher Query question related to filtering mechanism implementation.
Let's assume we are performing a filter to PROFILE nodes.. for simplicity there are two types of filters F1 ,F2.
Each ...
0
votes
2answers
54 views
Proportion of responses across choices and groups
I am fairly familiar with R but have reached a point where my data demands require me to learn iterative loops with multiple conditions. I have seen examples using various forms of *apply(), as well ...
0
votes
1answer
20 views
Can't aggregate arrays
I can create an array of arrays:
select array[array[1, 2], array[3, 4]];
array
---------------
{{1,2},{3,4}}
But I can't aggregated arrays:
select array_agg(array[c1, c2])
from (
...
2
votes
0answers
37 views
Requirements for COM aggregate my custom IRibbonExtensibility implementation?
We have a stripped down Connect class which instantiates the addin's core from an other assembly. Our architectural design is to keep the UI and business logic separated from the loading module (= ...
1
vote
1answer
108 views
Selecting Distinct values from Array in MongoDB
I have a collection name Alpha_Num, It has following structure. I am trying to find out which Alphabet-Numerals pair will appear maximum number of times ?
If we just go with the data below, pair ...
0
votes
1answer
33 views
How to fetch information in XML format from Nutch spidered webpages database
I'm trying to build books aggregation portal. Nutch provides me excellent web crawler, but I want very specific information like, book title, book price, ISBN, author etc. How to extract that ...
0
votes
1answer
44 views
Get info from another collection based of _id and merge - MongoDB
I have two collections. Lets call one baskets and the other one fruits.
In baskets we have the following document:
[{
basket_name: "John's Basket",
items_in_basket: [
{
...
0
votes
1answer
91 views
Basic SQL Query Construction Regarding Dates as a Parameter in Toad [closed]
I am very new to SQL and am having issues understanding some if its syntax. Before you tag this as a duplicate, I have spent quite some time reading other questions similar to mine.
What I need to ...
0
votes
0answers
42 views
A simple vote aggregation function
I want to evaluate the acceptance rate of a proposal, where a proposal can receive two types of votes: namely positive and negative.
So the simplest function that comes to mind is as follows:
p + n ...
1
vote
0answers
22 views
Data aggregation using 'droplevels' in R
ORIGINAL QUESTION:
How would you get hourly means for multiple data columns, for a daily period, and show results for twelve "Hosts" in the same graph? That is, I'd like to graph what a 24 hour period ...
0
votes
3answers
50 views
SQL: How to filter after aggregation?
It is very easy to remove values that you don't want aggregated.
For instance:
SELECT department, SUM(sales) as "Total sales"
FROM order_details
GROUP BY department
HAVING SUM(sales) > 1000;
...
1
vote
1answer
102 views
Temporary Collection in MongoDB
I can't understand this paragraph from mongodb MapReduce documentation (http://docs.mongodb.org/manual/applications/map-reduce/) - what Temporary Collection (optimisation?) is good for (business case, ...
-1
votes
1answer
66 views
Generic implementation of Aggregator
I am creating a class CommonAggregator which can aggregate any object which is Aggregatable.
public interface Aggregatable<T> {
public void addFieldValue(T t, AggregationField<T> ...
0
votes
0answers
39 views
MongoDB Aggregation - occasionaly force an array for unwinding with project?
MongoDB's Aggregation Framework allows you to unwind if and only if the target of the unwind is an array. I have records where the specific field I want to unwind may be an array of dictionaries, or ...
0
votes
1answer
26 views
Aggregation on Heirarchy Data types
I've been reading about the Heirarchy data type in MS SQL2012. I'm trying to store an organisation data structure with values at each level. I'm wondering how do you aggregate data that is ...
1
vote
1answer
47 views
How would you address this aggregation/reporting scenario based on RavenDB document data?
We're using RavenDB (2261) as the back end for a queue-based video upload system, and we've been asked to provide a 'live' SLA report on various metrics to do with the upload system.
The document ...
2
votes
1answer
73 views
Print two-column table from Mongo aggregation in PHP
I have the following Mongo aggregation in PHP:
$results = $collection1 -> aggregate (array(
'$group' => array(
'_id' => '$Issue',
'total' => array('$sum' ...
0
votes
1answer
79 views
mongodb aggregation cast to int
I have the following problem with mongo using the aggregation framework.
Suppose and item with time in seconds, t, and an event id occurring, e, like:
item:{t:11433, e:some_id}
what I want is to ...
0
votes
0answers
38 views
Alternative options for aggregation of mongodb collections
Breaking with mongodb limitations in the aggregation framework, i need to move to a less-limited framework:
Aggregation operations with the aggregate command have the following limitations:
...
1
vote
1answer
59 views
Aggregation: Project dotted field doesn't seem to work
I have a database containing this document:
{"_id":{"$id":"xxx"},"duration":{"sec":137,"usec":0},"name":"test"}
If I call db.collection.aggregate with this pipeline:
{$project:{_id: 0, name: 1, ...
0
votes
5answers
136 views
MATLAB: Aggregate and compare measurements with different sampling interval
I have measured a variable x in equidistant long intervals (every 10 min) and a variable y in non-equidistant short intervals (somewhere between every 30 s and 90 s). Timestamps (datenum) for both x ...
0
votes
0answers
101 views
Drupal CSS/JS aggregator and Jquery CarouFredSel
On turning on CSS/JS aggregation on Drupal 7, my jquery CarouFredSel scroll effect doesn't work anymore causing the images in the carousel to be scrolled one at time without any effect. The same work ...
0
votes
0answers
319 views
hive count(distinct) only one reducer
it's troubling me for a long time. I like to use hive aggregation with multiple distinct like below:
select count(case when pv=1 then 1 else null end), count(distinct case when pv=1 and uid>1 ...
1
vote
2answers
57 views
Do pointer/reference data members indicate an association or aggregaation relationship in UML?
I'm a bit confused about which one it is.
You could say it 'uses' the object via the pointer - therefore association.
But it also sounds like aggregation - 'has an' object but when this object dies ...
0
votes
1answer
71 views
Can aggregation relationship in UML have one to one relationship
Can aggregation relationship in UML have one to one relationship?
Our application is a store billing one.
During billing we will provide member id to get him certain discount. So is relationship ...
1
vote
2answers
102 views
Jackson deserialization - aggregate several fields
suppose I've got a collection of people defined like this in JSON.
{
"NOM": "Doe",
"PRENOM": "John",
"EMAIL": "john.doe@email.me",
"VILLE": "Somewhere",
...




