0
votes
2answers
19 views

my custom PHP stdev function VS mysql's STDDEV_POP

So I have this code: $arr = array( 1,2,3,4,5,6 ); $num = count($arr); $sum = array_sum($arr); $average = $sum/$num; foreach($arr as $val) { $sum += pow(($val - $average), 2); } $stdev = sqrt($sum ...
0
votes
0answers
23 views

No differences among standard deviations in MySQL?

In a MySQL database I have a view (view_one) that contains a number of vegetation indices for several agricultural fields. The fields are further devided into plots, transects and points. Here's the ...
1
vote
0answers
45 views

Using MEDIAN along side MAX, MIN, and AVG functions in MySQL

I have the following MySQL query which is working perfectly: select count(*) as `# of Data points`, name, max((QNTY_Sell/QNTYDelivered)*1000) as `MAX Thousand Price`, ...
0
votes
4answers
39 views

How to retrieve statistical SQL results with PHP?

After hours of trying and searching the net, I'm giving up and am asking for your help. How to retrieve statistical SQL results with PHP? I created a test table with five entries, with primarily ...
2
votes
0answers
65 views

Query quirks with DB2, no-op coalesce halves the runtime

I'm working on optimizing some queries for a DB2 database. Most of them are running fine, but a few with rather large returned datasets (up to 30k rows or so) are giving me some trouble. There's ...
0
votes
1answer
42 views

regression coefficients in KXEN

we are considering to start using kxen to build logistic regression models on client data. We have used SAS and R studio till now and I am having hard times to clearly understand the logic of K2R ...
1
vote
2answers
37 views

Interval Sampling statistics into Database

A lot of events of various type is triggered in my application - I want to count them over time to keep track. I'm trying to figure out the best way to do this. I will have multiple servers and ...
3
votes
1answer
193 views

Oracle SQL: Most efficient way to calculate Z-score of grouped data

I have two tables: DATA DATA_ID | SAMPLE_ID | ASSAY_ID | SIGNAL 101 | 201 | 301 | 2.87964 102 | 201 | 302 | 7.64623 103 | 202 | 301 ...
0
votes
2answers
65 views

How to aggregate datapoints in a table?

Suppose I have following table - CREATE TABLE data_points (t DATETIME PRIMARY KEY, value INTEGER); I want to aggregate the data by calculating average of every 10 points in the table. i.e. If ...
0
votes
1answer
151 views

Calculating skewness of a data distribution in SQL in Access without an additional subquery

I have a dataset in an Access database that, for simplicity's sake, looks like this: ID Group Employee Ticket ID ------ --------- -------- ----------------- 1 A ...
1
vote
1answer
51 views

Generalize a query that involves multiple instances of three tables SQL

I am doing a formula to make some statistics in SQL, but I do not know how to improve a query I am working on... I made a sqlfiddle so you can understand me better So I have 3 tables and I need to ...
-1
votes
1answer
97 views

How to Find All Triple-Digit Narcissistic Numbers? [closed]

How to find all triple-digit narcissistic numbers/pluperfect digital invariant?
5
votes
3answers
289 views

Select random row from a PostgreSQL table with weighted row probabilities

Example input: SELECT * FROM test; id | percent ----+---------- 1 | 50 2 | 35 3 | 15 (3 rows) How would you write such query, that on average 50% of time i could get the row with ...
3
votes
2answers
92 views

SQL Statistical sampling

I'm looking for some genius SQL help with a tricky statistical problem I'm having. What I'm looking to do is pull a statistically balanced sample out of an unbalanced group of user profiles. Doing ...
0
votes
1answer
144 views

SQL Query with Joins Counting multiple Results Per Record Ordering By Count

I have a table called Request. Other tables are linked to the Request table through a request id. There is a TwitterTweet table and a FacebookPost table. So a single request can have 50 TwitterTweets ...
1
vote
1answer
97 views

Ad hoc 2x2 contingency tables SQL Server 2008

I'm looking at ways of creating contingency tables in SQL Server 2008. They don't necessarily have to appear in the 2x2 typical matrix. I'd just like to know if anyone out there can see a better ...
0
votes
3answers
121 views

SQL statistics query

I want to gather some statistics and I wonder if can take some min, max and average values directly by DB queries. In an oversimplification I have something like this: Person | Account ...
2
votes
0answers
78 views

I need to find median in mysql [duplicate]

Possible Duplicate: Simple way to calculate median with MySQL I need find the median of each corresponding id value in mysql. Means i need to get like median of 1=3 and median of 2=5 and ...
2
votes
1answer
135 views

if auto_update_statistics is made ON by using sp_autostats for a particular index of a table will Statistics for every DML?

I hit upon auto_update_statistics on google, it suggest if we make this ON we do not need to update Statistics, SQL Server will do it. I was wondering so for any Insert, Update(of Indexed Column), ...
0
votes
1answer
207 views

SQL Server Outlier Filter

I am looking for a way to perform basic outlier filtration on a column of data in SQL server. Background I have a log table that contains various actions and the times at which those actions ...
0
votes
1answer
263 views

weighted standard deviation in sql server without aggregation error

Redoing the weighted mean (which is already in another column) in working out the weighted-Sum-Of-Squared-Deviations, results in the error "Cannot perform an aggregate function on an expression ...
1
vote
3answers
342 views

How to compute standard deviation with missing data with SQL Server

I am aware that SQL Server as aggregate function for STDEV and STDEVP. However, in my specific case, my table is missing data. In the table shows the inventory of a Product for every hour. When an ...
0
votes
3answers
88 views

Get some sort of Top Ten list of one column from table

I'd like to get some sort of Top Ten list from a table a MySQL database. Here's an example. Let's say I have this table: ID Username Town 1 foo Munich 2 bar Kolding 3 herp ...
0
votes
2answers
79 views

Sum of statistics for every player (goals/assists/cards etc.)

I'm trying to create a page that displays statistics for every player. A sum of total goals, assists, yellow cards, red cards etc. The details are stored in the matchdetails you can see below: ...
2
votes
2answers
140 views

Rails - how to run method only first time, when user come to my page

I have lots of data in database and I wanna make a statistics from them. Lots of data = thousands rows in table, and I wanna get the daily, weekly, monthly (for every month) stats... just detailed ...
5
votes
2answers
462 views

ORDER BY RAND() seems to be less than random

I have a fairly simple SQL (MySQL): SELECT foo FROM bar ORDER BY rank, RAND() I notice that when I refresh the results, the randomness is suspiciously weak. In the sample data at the moment there ...
0
votes
1answer
64 views

Managing quotas on CATI software - workaround

I'm trying to figuriung out a way to manage quotas over a CATI system (written in PHP+SQL and XML) let's say we have a population like this: CITY | #MALE | #FEMALE | AGE CLUSTER (YOUNG) | AGE ...
6
votes
2answers
853 views

SQL: How can I get the number of executed queries per database or hour or …?

Is there any way to see how many queries are executed in like every hour, or per database / hour, or average number of queries on a day, or ....? Just for statistics.. I like numbers. I can't just ...
2
votes
1answer
112 views

Opensource stat server?

I've been looking for an opensource stat server that supports the following requirements: Local proxy to aggregate 100s stats per second, and sends those stats out to a central cluster (or single ...
0
votes
0answers
88 views

Finding the “distance” between two items using a table of relations

I am working an a project in which the program in PHP that receives posted items, such as images, text, etc. and these are then stored in an SQL database. Users then select related items, whose ...
1
vote
0answers
144 views

Implementing a Recomendation Engine in MySQL

So, I want to implement a hybrid collaborative filtering algorithm, (Full algorithm here). The algorithm has a Ratings table Ratings:=(id, user_id, item_id, rating) this table basically records a ...
0
votes
2answers
292 views

Statistical Mode with postgres

I have a table that has this schema: create table mytable (creation_date timestamp, value int, category int); I want the maximum ocurrence of a value ...
1
vote
0answers
146 views

What is a good database to keep track of general Statistics? [closed]

I'm currently storing timestamps with pageviews and number of users online every minute in MongoDB. It's working well so far but I'm wondering if there's a better database to keep track of statistics. ...
4
votes
2answers
1k views

How to calculate an exponential moving average on postgres?

I'm trying to implement an exponential moving average (EMA) on postgres, but as I check documentation and think about it the more I try the more confused I am. The formula for EMA(x) is: EMA(x1) = ...
1
vote
1answer
140 views

SQL. Calculation correlations of asset classes

I have a database with 101 simulations for, lets say, 5 different asset classes returns. I need to write a query that will calculate the respective correlations between each of the 5 classes. Table ...
2
votes
5answers
1k views

SQL Top 10 Sales Every Month

Greeting all. I have a SQL 2008 express database, lets name is tbl_Merchant, similar as following: Merchant | Sales | Month Comp.1 100 1 Comp.2 230 1 Comp.3 120 1 Comp.1 ...
9
votes
4answers
239 views

given 10 functions y=a+bx and 1000's of (x,y) data points rounded to ints, how to derive 10 best (a,b) tuples?

We build software that audits fees charged by banks to merchants that accept credit and debit cards. Our customers want us to tell them if the card processor is overcharging them. Per-transaction ...
0
votes
3answers
134 views

Storing and Displaying Live Stats

Say we are a site receiving massive amounts of traffic, Amazon.com size traffic. And say we wanted to display a counter on the home page displaying the total number of sales since December the first ...
1
vote
1answer
55 views

Smoothing page views over time to find truthfully most popular overall

I have a year's worth of page views for articles, each with a published-at timestamp and page view total. Being that all the stories from the beginning of the year have accumulated the highest totals, ...
0
votes
1answer
168 views

Oracle function for scoring date intervals, inverse of months_between

I have a set of (employeeId, planId, coverageMonth, contractId) keys. Sometimes there are two or more (contractId)s for each (employeeId, planId, coverageMonth) i.e. ...
1
vote
2answers
964 views

Standard deviation within group in SQL or SSRS (alternatively - calculating Sigma or Cpk)

I have a serious problem with calculating Standard Deviation within subgroup in SSRS/SQl (whichever is more convenient). The real reason behind this is I need to calculate Sigma value (according to ...
11
votes
1answer
3k views

SQL why is SELECT COUNT(*) , MIN(col), MAX(col) faster then SELECT MIN(col), MAX(col)

We're seeing a huge difference between these queries. The slow query SELECT MIN(col) AS Firstdate, MAX(col) AS Lastdate FROM table WHERE status = 'OK' AND fk = 4193 Table 'table'. Scan count 2, ...
0
votes
1answer
223 views

Creating a separate table for statistical counter in mysql?

I have a table for posts as ID, Title, Content, etc. I just added a column as counter. It is a simple counter of visits, as every time it will be updated as $i+1. In this method, I update the table on ...
0
votes
1answer
172 views

sql query select statement statistics

I am looking for statistics on query execution, not of a specific application, but the average by world's usage, something very typical. Specifically I want the SELECT statement statistics, the WHERE ...
3
votes
4answers
146 views

Do SQL Server statistics gather different data if they are updated under load vs. off peak usage?

Aright, basic question is: Has anyone heard anything that would imply that statistics need to be updated under daily use to be effective as opposed to off peak hours? We had an issue with a database ...
6
votes
4answers
92 views

Correlating varchar values

Is there a built-in way in Oracle 11 to check correlation of values in a varchar2 field? For example, given a simple table such as this: MEAL_NUM INGREDIENT -------------------- 1 BEEF 1 ...
0
votes
0answers
367 views

Using NTILE with less than 100 records?

I am using NTILE(100) to calculate the 95th percentile value in my column. In some cases where the number of records is less than 100, NTILE(100) returns a NULL when queried for the values in the 95th ...
1
vote
3answers
1k views

Calculating the 95th Percentile value?

I am trying to calculate the 95th percentile point in my table column and am using the TOP 95 PERCENT construct. I was wondering if the following approach is correct or if there is a better way of ...
2
votes
3answers
702 views

SQL Server - How to add a column of percentile values of another column?

I'd like to have a calculated field that gives me the percentile of a column's value in a table. What is the best way to do so? I have a table with only one column containing values ranging from 0 ...
2
votes
2answers
207 views

Calculating a user rank

Suppose I have a table UserStatistics with following columns: UserId (UNIQUEIDENTIFIER) ViewCount (BIGINT) SubscriberCount (BIGINT) Rank (INT) What would be the best way to give a rank of 1-10 or ...

1 2