Aggregate refers to the process of summarizing grouped data, commonly used in Statistics.

learn more… | top users | synonyms

0
votes
0answers
15 views

Push_back in vector of objects from agreggate class

I'm having a little issue with vectors. From what I understand, push_back() will copy the argument and insert the copy in the vector. struct BridgeData { string name; string type; }; For a ...
0
votes
1answer
69 views

repeating some codes in R and get the average

My code to calculate the cumulative distribution function from data imported from a text file. data <- read.table("example.txt", header = F) sub <- subset(data, V1 == 'first' & V2 == 0) ...
0
votes
0answers
20 views

MsAccess similar Listagg function of Oracle

As the title I want to find a way to concatenate values of column into a String. I know of Listagg in Oracle but is there a similar one for MsAccess.
0
votes
1answer
15 views

How can I do mapping from AggregationOutput to a POJO?

For a complicated query I descended to MongoDB Java API (using Spring-data for most of my stuff) and I wrote a aggregate statement using BasicDBObjects. DBCollection users = ...
2
votes
1answer
47 views

Apply function conditionally

I have a dataframe like this: experiment iter results A 1 30.0 A 2 23.0 A 3 33.3 B 1 313.0 B 2 323.0 B 3 350.0 ...
0
votes
1answer
38 views

MongoDB and Aggregation Framework

I have the following collection in mongodb. { "_id" : ObjectId("519a35ee8f2ceda43f42add5"), "articulo" : "Sobre mongodb", "autor" : "xxxx1", "calificacion" : 3 } { "_id" : ...
0
votes
1answer
37 views

aggregate zoo object index classes date

Iam trying to merge zoo objects with different index classes. Because the index classes are different I have tried to aggregate the the first zoo object as index class date. > dput(ldr_fund) ...
0
votes
1answer
24 views

Why Group is slower than $group from Aggregate?

I tried to bench 3 methods to group data: native js (with underscore), group and Aggregate with $group I uses these datas (genre/position' trees in Paris) (237 168 rows, 35Mo) This is my script test ...
0
votes
0answers
19 views

how to join several row values in one row in postgresql? [duplicate]

How to turn : => SELECT pic.reference, spec.name FROM species spec NATURAL JOIN pictures pic WHERE spec.name = 'Bufo bufo'; reference | name -----------+----------- IM000213 ...
0
votes
2answers
49 views

length() doesn't work in aggregate function using dot notation

I have a large dataframe made up of both factor and numeric variables (numeric variables contain NA's). I would like to find the number of observations of multiple numeric variables for different ...
0
votes
1answer
26 views

How can I $add over a list of fields that may not exist

I have a document with the structure below, and I want to get a total for the last 2 months adding 2013.5 and 2013.4, as part of the process of getting the top 10 packages. If I use the aggregate ...
0
votes
0answers
16 views

Wordpress Site Navigation Menu li Title Not Visible

Please help me: I am facing a problem with the site: http://scholatar.com/ In the navigation menu list item only the home link title "HOME" is visible but other list item's link title are not ...
1
vote
2answers
38 views

R aggregate over time series, missing dates for some groups

I have a problem when I aggregate data over a date series and a group where some dates are missing in one but not all of the groups. dates <- seq.Date(as.Date("2010-01-01"), by=7, length.out=5) ...
0
votes
1answer
34 views

Aggregate results from multiple mySQL databases in PHP

I have a large # (say 100) of databases with identical schemas and want to do SQL aggregates across this entire collection of databases. Lets say the table is ATHLETES CREATE TABLE ...
0
votes
1answer
29 views

Locating a specific record in an aggregation of a Mongo DB collection

I am working on a reporting project that deal with monthly orders We have orders coming into MongoDB in the below format order:{ _id: 123456789012123456789012, items:[ {code:'ITEM1', ...
0
votes
1answer
26 views

Hadoop combiners with aggregator functions

When using one of the aggregator function in place of a reducer, will Hadoop be smart enough to use same function for combiner phase?
0
votes
1answer
22 views

Find out max value for each group along with name

I have a table Employee whose contents are as below ------------------------------------------------------------------- Name Department Salary ...
2
votes
2answers
67 views

Combine rows and sum their values

Below there is a fraction of my original data frame. I need to combine those rows in which a specific id is repeated in a specific season and its lic and vessel are different. By combining I need sum ...
3
votes
3answers
49 views

Aggregate data frame by date and apply different functions to corresponding columns?

I have the following data frame "DF" which is part of a much larger one: X1 X2 X3 X4 X5 4468 2010-03-24 3 1.000000e+00 1 2 7662 2010-03-24 9 3.000000e+00 2 1 1272 ...
0
votes
2answers
35 views

How can i get duplicate elements identified by 2 keys in mongo collection?

I have a collection with a few million documents for which i need to find at least duplicate document. The duplication criteria is based on 2 keys, not one. So i need to find at least 2 documents ...
0
votes
2answers
18 views

MySQL - Group BY GROUP_CONCAT

I have the following query: SELECT issue.`sequence` AS issue_sequence, issue.`description` AS issue_description, GROUP_CONCAT(DISTINCT(issue_category.`name`) SEPARATOR ', ') AS ...
7
votes
2answers
45 views

Easy way of “adding” two large tables in R?

Is there an easy way of adding the counts for each category in two large tables in R? ... where the tables don't all have exactly the same values present (though they will mostly overlap): Small ...
2
votes
1answer
24 views

Is there a way to pass an aggregate sum total to a package level variable?

Ok, I'm fairly new to SSIS and am trying to convert a flat file from one system into a file that is importable into another system. Part of this file conversion is the utilization of a header record. ...
0
votes
0answers
25 views

Can I get first document (not field) in MongoDB aggregate query?

In Aggregation Framework Examples,there is a first & last example: db.zipcodes.aggregate( { $group: { _id: { state: "$state", city: "$city" }, ...
2
votes
1answer
41 views

EAV Set Data into Set Based Aggreate Results

I have data that is generated when a user logs into the application. It contains a timestamped login and logout, which are not attributed to any specific work campaign. Those are my boundaries for ...
0
votes
1answer
8 views

Using aggregates inside of control flow functions

The problem is this: create a query that will Group the IP addresses and display a sum of the number of requests by each IP address that had a return code (retcode) of greater than 300 order this ...
3
votes
4answers
153 views

Compute mean and standard deviation by group for multiple variables in a data.frame

Edit -- This question was originally titled << Long to wide data reshaping in R >> I'm just learning R and trying to find ways to apply it to help out others in my life. As a test case, I'm ...
0
votes
1answer
50 views

DDD, EF and Referential Integrity

Ok so I have my roots defined. Entities inside a root are allowed references to other entities inside the same root, but not outside. There they can only have the identity or the related entity. ...
2
votes
1answer
37 views

R conditional sum in data frame depending on word in a column

I have a data frame containing words and numeric entries. I want to sum all the entries for which the row entry in the word now is identical. District name Population Child birth rate A ...
0
votes
0answers
120 views

How to get value of aggregate column in kendo grid?

I am using kendo grid and its aggregate property.But now i need to get the value of total amount which is the value of aggregate column in the grid.How to retrive this using javascript or jquery.I ...
0
votes
1answer
41 views

How do I select an array from the results of a query?

I've created a VARRAY type: CREATE TYPE my_array AS varray(1024) OF VARCHAR2(512); I know I can create an instance of my_array from a list of values using my_array(): SELECT my_array('foo', ...
0
votes
1answer
34 views

row aggregation according to date in R and sum corresponding other column values divided by number of aggregated rows

Below is a part of my rather large table called "input": [,1] [,2] [,3] [7146,] 20100324 7.70 4.0000000 [7147,] 20100324 2.22 0.0000000 [7148,] 20100325 2.12 ...
0
votes
3answers
45 views

Can I do multiple split sapply operations on a large data frame?

I've been at this for a few hours now, and can't seem to find a solution. I have a very large data frame (upwards of 1.5 million rows), in which I want to do a fairly specific operation. First of all, ...
2
votes
1answer
49 views

How to apply a function to several columns of a GroupBy object?

Let us assume that we have a GroupBy object that was obtained as a result of groupby operation applied to a DataFrame: grouped = data_frame.groupy(['col_1', 'col_2']) We can generate a new data ...
0
votes
1answer
30 views

MySQL aggregation and separation at the same time

I have this quite complex problem I guess. My Mysql DB looks like that: Trips: id mileage car id driver id Drivers: id name Cars: id model What I ...
1
vote
1answer
23 views

Selecting values from different Dates R

I have a quick question using the following dataframe. x <- c("2012-01-01","2012-01-01","2012-01-01","2012-01-02","2012-01-02","2012-01-03","2012-01-03") y <- c(1,2,3,4,5,6,7) data.frame(x,y) ...
1
vote
3answers
40 views

Show string constant for a group having multiple values

I have a view myview which retrieves information in the following manner: ID | ATTRNAME | ATTRVAL 1 | attr1 | a 2 | attr2 | b 3 | attr3 | c 4 | attr3 | d .. | .. | .. .. ...
1
vote
1answer
30 views

Cut data by date for multiples of break=“min”

I'm using R to aggregate tick data and I have the following function which works well to aggregate the data to the minute but now I want to expound on that and aggregate to 5, 10, 15min. How can I do ...
0
votes
1answer
36 views

MSACCESS query: not part of an aggregate function

MSACCESS query: I have an append query that pulls fields from 2 tables (Right Join). I want to add an expression that multiplies a value in one field by a value on a form. The query works fine, ...
1
vote
0answers
60 views

Cognos Aggregation: An error occurred while performing operation 'sqlOpenResult' status='-28'

I get this error when trying to apply an aggregate function to a column, I want to total it, but even count doesn't work. I'm trying to get the number of locations with no inventory located to them. ...
1
vote
2answers
47 views

Correlation of subsets of dataframe using aggregate

I have a data frame made by row binding many data frames, each identified with a unique key. I wish to calculate the correlation coefficients for columns in each subset (using the unique key) of the ...
2
votes
2answers
51 views

Aggregate a series of contiguous blocks in an IEnumerable

Overly simplified, contrived question I have an enumerable instance which can contain a series of contiguous elements, and the some other elements interdispersed with them. A simple example var ...
0
votes
2answers
41 views

group by in django aggregate function?

I have problem writing group by sql into django app. Can any of you django users help me how to write this sql into django-friendly code? This is my model: class Stock(models.Model): name = ...
1
vote
4answers
60 views

Summarize and Rank Data Frame

Using R, I need to build a report of the top 2 employees per departments with the most expenses and add an "Others" for the other employees of the department. For instances, I would need a report ...
0
votes
3answers
42 views

Unable to make native javascript reduce() function work

I'm trying to aggregate data using the reduce() function in javascript (similar to this question): HTML Product 1: <button id="product1">Add one</button> Product 2: <button ...
1
vote
1answer
27 views

How to optimize data aggregation in day of week, time of day for a period of one month back

Here is the situation: I have a SAAS Application which is a simple RSS Feed reader. I think most people know what this is - users subscribing to RSS feeds and then reading items from them. Nothing ...
0
votes
1answer
35 views

Using SQL aggregate functions outside of a group

I have a table, call it TEST, like this one: +----+--------+ | id | PRCNTG | +----+--------+ | 1 | 10 | | 2 | 20 | | 2 | 30 | | 3 | 40 | | 4 | 50 | | 5 | 20 | | 5 ...
1
vote
2answers
71 views

Query Performance while using Oracle aggregate function

Below is the query in which I am using an aggregate function. The where clause is simple with an index on corpId and incoming_date . If I simply fetch all rows/count the query takes lesser than a ...
4
votes
3answers
99 views

Reshape data from long to a short format by a variable, and rename columns

How to do this more elegantly with plyr, reshape2, aggregate function and/or data.table? library(plyr) set.seed(1) x <- data.frame(Ind = paste0("Ind", 1:10), Treatment = ...
2
votes
2answers
40 views

How to reduce table dimension based on column name

I have a table that has a format along the lines of Class1 0.438 0.441 0.442 0.444 0.545 0.546 0.548 0.609 0.651 0.652 0.655 DAWO 2 2 0 1 0 0 0 1 1 5 1 ...

1 2 3 4 5 20