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
3
votes
1 answer

Controlling continuous servo using python in Raspberry Pi,but the continuous servo can't stop

I'm trying to control a continuous servo(DF15RSMG) using python in Raspberry Pi, but the continuous servo can't stop. Code as follows: import RPi.GPIO as GPIO import time import signal import atexit atexit.register(GPIO.cleanup) …
XiaoJin
  • 67
  • 1
  • 6
3
votes
2 answers

Extract first continuous sequence in vector

I have a vector: as <- c(1,2,3,4,5,9) I need to extract the first continunous sequence in the vector, starting at index 1, such that the output is the following: 1 2 3 4 5 Is there a smart function for doing this, or do I have to do something not…
Esben Eickhardt
  • 3,183
  • 2
  • 35
  • 56
3
votes
2 answers

Send continuous data from 4G module to server

I have the Telit LE910 4G LTE module connected to a Teensy board (Arduino will do). While I am able to send data to my PHP server using HTTP requests (POST and GET), I am not able to send continuous data due to necessary delays for the server to…
Rex
  • 143
  • 1
  • 3
  • 11
3
votes
4 answers

Identify groups of continuous numbers from consecutive list in python

What is the most efficient way in python for picking multiple n consecutive integers from n consecutive list, picking up one integer from each list. Here n is quite large..say in the order of 100s. L1 = [5,3,2,7,1] L2 = [3,5,6,8,9,21,2] L3 =…
rombi
  • 199
  • 3
  • 22
3
votes
2 answers

Improving this continuous jQuery animation

I've just created a simple, continuous bounce effect in jQuery but I feel the code isn't all that optimized and am looking to improve it. var $square = $("#square"); bounce(); function bounce() { $square.animate({ top: "+=10" }, 300,…
Marko
  • 71,361
  • 28
  • 124
  • 158
3
votes
1 answer

How to do automatic data archiving in SQL Server?

I have table for which every day I want to do automatic archiving. So to be clear every day I want to take information generated during that day and move it into another partition (of same table) not in another archive table. That's because I want…
giolekva
  • 1,158
  • 2
  • 11
  • 23
3
votes
2 answers

CruiseControl.NET - Project Does Not Exist

I have CruiseControl.NET setup on a server. I had everything working perfectly. Everything meaning, pull the code from SVN, build it, upon successful build, kick off a project setup with a project trigger to deploy the code to the DEV environment. I…
3
votes
2 answers

Continuous Timeline in Iphone App?

Background: Workout App is designed to have a continuous timeline that I can then input what exercise and reps I'm doing in real-time, then graph the results in real-time. Issue: When the iphone sleeps for too long, we lose the continuity of the…
scottorn
  • 51
  • 5
3
votes
0 answers

hurdle models using continuous data and covariates

I was wondering if I get some advice about fitting hurdle models using continuous data and covariates. I have some continuous data that are generally well fit using a right-skewed distribution such as a Pareto, Gamma, or Weibull distribution.…
JBauder
  • 91
  • 1
  • 5
3
votes
4 answers

Sorting algorithm for continuous data stream

Which of the sorting algorithms heap-sort, quick-sort & merge-sort could work with a continuous stream of data? I want to have a list that's always sorted, so that new values can get into the list at the right location right away. I can't seem to…
Oscar
  • 31
  • 1
  • 3
3
votes
1 answer

Error: Discrete value supplied to continuous scale

I'm using ggmap to work on a map of madagascar myMap <- get_map(location=k, source="stamen", maptype="toner", crop=FALSE, zoom=16) and to plot points on that map from an x y lat/lon grid ggmap(myMap) + geom_point(data=GPS, aes(x =…
user3720904
  • 119
  • 1
  • 2
  • 4
3
votes
1 answer

SVN merging branch to trunk causes conflicts on files that have been resolved

I have been researching this on and off for weeks now so I do apologise if this has already been answered. My main problem is merging after performing continuous merges. I have my /trunk, from which I create my branch /branches/featureone. A…
3
votes
1 answer

ggplot2 continuous bar plot with multiple factors

I'm going to use the diamond data set that comes standard with the ggplot2 package to illustrate what I'm looking for. I want to build a graph that is like this: library(ggplot2) ggplot(diamonds, aes(clarity, fill=cut)) +…
black_sheep07
  • 2,308
  • 3
  • 26
  • 40
3
votes
1 answer

Time-series data analysis using scientific python: continuous analysis over multiple files

The Problem I'm doing time-series analysis. Measured data comes from the sampling the voltage output of a sensor at 50 kHz and then dumping that data to disk as separate files in hour chunks. Data is saved to an HDF5 file using pytables as a CArray.…
Sean
  • 311
  • 1
  • 3
  • 12
3
votes
2 answers

Xcode 5 continuous integration: The Xcode Service is not enabled on the server

I've just installed Xcode 5 and OS X Server and trying to set up continuous integration. I followed these steps but when I try to add server in Xcode I get the following error: "The Xcode Service is not enabled on the server '...'. Contact the…
pagapov
  • 31
  • 3