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
4
votes
3 answers

Continous loop and exiting in python

I have a script that runs continuously when invoked and every 5 minutes checks my gmail inbox. To get it to run every 5 minutes I am using the time.sleep() function. However I would like user to end the script anytime my pressing q, which it seems…
Ali
  • 4,311
  • 11
  • 44
  • 49
4
votes
1 answer

Continuous space shortest path

I need a shortest path algorithm for controlling a real life robot. Lets say i have map of the environment in the form of a matrix where 1 is an obstacle and 0 is free space. If i use a conventional shortest path algorithm, such as A* then that…
4
votes
2 answers

Cruise Control on a Virtual Machine

Any downside to using Cruise Control on a virtual machine? My build system is shaping up to look like Machine 1: Source Control Repository and Server Machine 2: Will host a virtual machine. This virtual machine will host a virtual server that will…
bearrito
  • 2,217
  • 1
  • 25
  • 36
4
votes
0 answers

How do I continuously read and parse high speed SerialPort data

I am trying to write C# code that takes serialport data from a high speed GPS device and parse the data to grab coordinates. The problem with this compared to other serial GPS devices is that it spits out 5-6 lines of data every 100 milliseconds…
Kevin Tam
  • 51
  • 1
  • 4
4
votes
2 answers

R: DEoptim parallel optimization - number of cores

I'm trying to use DEoptim optimization package in R on a continuous optimization problem, and as my cost function takes a long time to evaluate (2min), I'm trying to use parallel computation. My questions are: What's the difference between…
Mathieu
  • 43
  • 3
4
votes
5 answers

java virtual machine - how does it allocate resources?

I am testing the performance of a data streaming system that supports continuous queries. This is how it works: - There is a polling service which sends data to my system. - As data passes into the system, each query evaluates based on a window of…
user276055
4
votes
5 answers

Append to a webpage in javascript

What I want to do is that: a webpage with continuously updating content. (In my case is updating every 2s) New content is appended to the old one instead of overwriting. Here is the code I have: var msg_list = new Array( "Hello,…
Lily
  • 5,872
  • 19
  • 56
  • 75
4
votes
1 answer

Why am I getting "svn: connection refused by the server"?

We have a Continuous Integration environment setup with TeamCity and subversion. TeamCity gets the latest source from svn and does a build (Visual Studio) on every commit. Sometimes we get the following TeamCity error when the build runs. Doing a…
chrisk
  • 159
  • 4
  • 7
4
votes
1 answer

Tukey HSD for mixed continuous and categorical variables, error: "no factors"

I'm trying to run a Tukey test on mortality data, where I want to test whether mortality is influenced by the amount of copper (in an one-way ANOVA) and the combination of copper and temperature (in a two-way ANOVA). These are my formulas:…
Lundill
  • 71
  • 1
  • 1
  • 2
4
votes
0 answers

How can I draw continuous curves in flot charts?

I'm trying to make a line chart in flot and I was wondering if it's possible to represent continuous lines. I mean curves such as y=ax^2+bx+c, or sin(x). I already know that I can make a "for" sentence and draw the curve as a composure of short…
4
votes
2 answers

Continuous deployment to Azure from TFS 2012 Update 2

I am not using TFS Service (Preview/Online). I am running TFS 2012 Update 2 on-site and trying to deploy an Azure Service that contains a web and worker role. I'm also using Azure SDK 2.0. I have tried endlessly to get the deployment working with…
4
votes
1 answer

How does the C4.5 Algorithm handle continuous data?

I am implementing the C4.5 algorithm in .net, however I don't have clear idea of how it deals "continuous (numeric) data". Could someone give me a more detailed explanation?
user2210106
  • 41
  • 1
  • 3
4
votes
3 answers

Call Perl script from Python constantly returning values

I found a question on this site which showed me how to call a Perl script from Python. I'm currently using the following lines of code to achieve this: pipe = subprocess.Popen(["perl", "./Perl_Script.pl", param], stdout=subprocess.PIPE) result =…
dmranck
  • 131
  • 1
  • 2
  • 9
3
votes
4 answers

Run a php script multiple times

I'm looking for a way to run a php script multiple times from a browser. Here's the scenario: I'm building a mySQL table from a series of large files ranging anywhere from 100 megs to 2 gigs. On average, there will be around 150,000 records in the…
Eric Strom
  • 715
  • 9
  • 20
3
votes
1 answer

Jenkins: how to save changelog for build

I have Jenkins-CI and C++ project under SVN. How to save changelog between successfull builds into text (or html) file ? Does Jenkins have any variable/temp file with content of .../changes page?
NMI
  • 134
  • 1
  • 8
1 2
3
29 30