Questions tagged [continuous]

A random variable X is called continuous if its set of possible values is uncountable, and the chance that it takes any particular value is zero (P(X=x)=0 for every real number x). A random variable is continuous if and only if its cumulative probability distribution function is a continuous function.

Overview

From Mood et al. (page 60, 1974):

"A random variable X is called continuous if there exists a function fX (.) such that

enter image description here

for every real number x. The cumulative distribution function FX (.) of a continuous random variable X is called absolutely continuous".

Mood, A. M., Graybill, F. A., & Boes, D. C. (1974). Introduction to theory of statistics. (B. C. Harrinson & M. Eichberg, Eds.) (3rd ed., p. 564). McGraw-Hill, Inc.

Excerpt reference: Glossary of Statistical Terms from berkeley.edu

Tag usage

Questions on tag should be about implementation and programming problems, not about the statistical or theoretical properties of this type of data. Consider whether your question might be better suited to Cross Validated, the Stack Exchange site for statistics, machine learning and data analysis.

438 questions
2
votes
1 answer

Where can I find project repositories with continuous testing?

I am interested in studying some test logs from different projects, in order to build and test an application for school. I need to analyze the parts of the code which are tested, the bugs which appeared in those parts and eventually how they were…
Jenny Smith
  • 2,987
  • 6
  • 29
  • 32
2
votes
3 answers

Can Hudson branch promotion get based on project stability?

Hudson CI server displays stability "weather" which is cool. And it allows one project build to kick off based on the successful build of another. However, how can you make that secondary project dependent additionally on the stability of multiple…
Wayne
  • 2,959
  • 3
  • 30
  • 48
2
votes
3 answers

Continious Printing with c#

I am using a dot matrix printer and have to do a continious printing job. The paper I use is 213mm X 350mm and splitted at the middle of the page. I've tried something and I am able to print the first side of the page but the prints are shifted…
fkucuk
  • 631
  • 1
  • 9
  • 21
2
votes
0 answers

SQL Query to group continuous numbers into different grouping sets

I've a table Serial with more than a million records. Few of the sample varchar(MAX) of values are given below: SerialNumber 1 2 3 4 7 8 9 13 14 15 19 21 I wish to group continuous range of values with same group into a sets like…
2
votes
3 answers

Quantiles on Continuous Time Data

I have blood concentration versus time data for 100 subjects. I am interested in plotting the 5, 50 and 95% quantile concentration vs time curves. While i can determine the quantiles for the entire concentration range, I am unable to figure out in…
tcek
  • 51
  • 4
2
votes
1 answer

How to categorize a continuous variable in 4 groups of the same size in R?

I need to categorize a continuous variable in 4 classes each one with the same number of observations. I have used the function cut(x, breaks = quantile(x,probs=seq(0,1,0.25)),include.lowest=TRUE,right=FALSE)) My problem is that the number of…
user2974841
  • 23
  • 1
  • 5
2
votes
4 answers

CSS animation active doesn't continue?

I've been trying to learn css animations and I'm starting to get a grip on them but I'm having an issue an animation effect. I have an animation class assigned to a section that is a download button when I click it the animation plays for the extent…
Tyharo
  • 383
  • 2
  • 5
  • 23
2
votes
3 answers

Continuous Integration setup for ruby projects on linux server

I would like to use open source tools if possible. here are 2 links I found but haven't tried them -…
oren
2
votes
2 answers

How to execute the next click only when previous click finish?

My HTML:

Testing Paragraph

Testing Span
This is the main content of this div
My jQuery: $('p').click(function () { …
user2352183
2
votes
1 answer

CruiseControl unable to recognize modifications for Mercurial repository

I am trying to implement a continuous build stack, and decided to use CruiseControl with Ant. However, it seems that CruiseControl is having problem picking up the changes from my Mercurial directory. Here's some code from config.xml with a bunch of…
2
votes
2 answers

continuous query in postgresql

I have a spatio-temporal database in Postgresql that is continuously updates. I was wondering if there is a technique for continuous query in this database? for example I have temperature data that updates every minute in the database for specific…
f.ashouri
  • 5,409
  • 13
  • 44
  • 52
2
votes
0 answers

How to automate NUnit tests in an ASP.NET website project?

I have a client who has a large existing application written in ASP.NET, which is setup as a website project in Visual Web Developer 2010 Express. I have been asked to demonstrate how to write unit tests and to help configure the Hudson build…
2
votes
3 answers

Using a thread to continuously check for changes to a value

I am trying to create a thread which will continuously check for changes to a value, then visually show that change in a PictureBox located in my GUI. What I actually wrote is a bit more complicated, so I simplified it while keeping the basic idea,…
peter9464
  • 57
  • 2
  • 8
1
vote
1 answer

How to calculate mean, median and mode from a set of CONTINUOUS numbers in Java?

Do you know if there is a library that supports these statistical operations or a way to do it in java?
ssierral
  • 8,537
  • 6
  • 26
  • 44
1
vote
3 answers

how do I run php code without users visiting the page?

Possible Duplicate: Best way to periodically execute a PHP script? I need to run a php script which continuously collects information from one site, and as soon as that information is collected I need the server to store the information on the…
CKKiller
  • 1,424
  • 1
  • 16
  • 20