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

Python: My function will print continuous outputs but will not return them.

First of all I could not figure out an appropriate title for this. Secondly, I am pretty new to programming. Anyway, I have this function: def addtrinumbs(): x = 1 list1 = [] while x > 0: list1.append(x) x = x + 1 …
Ubik88
  • 3
  • 3
0
votes
1 answer

How to continuously check data?

My program need to check online if something has been added to a database by someone. A simple checkifdatahasbeenadded(); does the trick. I need to check these every second or so, but I'm not sure how to do this. I can link this to a button, public…
0
votes
2 answers

AIX Continuous Log Monitoring

I have a simple requirement to keep monitoring a log file and when certain term appears in it, send a JMS message. I have used the code (checkScript.sh) below and it works perfect until the midnight when an archiving script kicks…
aadi
  • 98
  • 1
  • 1
  • 9
0
votes
1 answer

Software Test Automation Framework (STAF) or Jenkins

How is STAF better than compared to Jenkins + plugins in CI, testing and deployment? Jenkins is able to achieve automated testing and deployment using plugins, then in what situations should one use a framework like STAF?
anukalp
  • 2,780
  • 5
  • 15
  • 24
0
votes
0 answers

Discrete value supplied to continuous scale for xy scatterplot

Apologies for another question on this subject, but I have read the others and it hasn't helped me in any way. I am trying to create a generic xy scatterplot of geochemistry which, once the code is working, will have several layers of points added…
Holly Elliott
  • 103
  • 3
  • 10
0
votes
4 answers

Continuous Bluetooth C program using threads

I am trying to send my measuring datas (temperature, humidity and pressure) by bluetooth and it has to be continuous so I am using threads for that but it is getting too complicated for me. Here is the Bluetooth client code: #include…
jakeheik90
  • 11
  • 1
  • 6
0
votes
1 answer

i have 40 bookmarks that i open daily is there a way to scrape just the updates and send via sms or email?

These bookmarks are search queries. I know this is pretty broad, and new to this idea. I just don't feel paying a few hundred dollars a month is feasible or rational. I have no problem getting hosting, etc.
0
votes
1 answer

How do I delete from a continuously read file in Python?

I have created a python script to read from a continuously updated file ('out.txt') and write to a different file ('received.txt') every 10 seconds. Now I need to figure out how to delete the already read data from the 'out.txt' file. Here is the…
Thomas Hall
  • 43
  • 1
  • 6
0
votes
1 answer

continuous Intent listener android

I want to create an app that will print the strings that I send to from one activity to other. Both activities are running simultaneously. I want that i must be able to send string data anytime. And the other activity should print it. like a chat…
user2820823
  • 86
  • 1
  • 1
  • 9
0
votes
1 answer

Pygame audio delay and repeat loop

I have some python code for generating some sine wave audio in pygame: import pygame from pygame.locals import * import math import numpy def generate_sound(freq): #setup our numpy array to handle 16 bit ints, which is what we set our mixer…
ZenLogic
  • 317
  • 1
  • 4
  • 21
0
votes
1 answer

C# text marquee ticker with wrap

I'm trying to make a marquee (or ticker) control for text that wraps when it hits the end of the control. I've seen many examples and I've been able to make one with a label, but I can't figure out the best way to make it wrap the text to the other…
Synaps3
  • 1,597
  • 2
  • 15
  • 23
0
votes
1 answer

Drawing a continuous rectangle

i m currently working on visual c++ 2008 express edition.. in my project i have a picturebox which contains an image, now i have to draw a rectangle to enaable the user to select a part of the image.. I have used the "MouseDown" event of the…
JAYMIN
  • 65
  • 1
  • 1
  • 5
0
votes
1 answer

Continuous Deployment in Cloud

I am assinged for the task of Continuous deployment from development server to production server. In my development server all the database objects will be created under the 'DBO' Schema. But in Production server based on every Tenants company list…
0
votes
1 answer

Play PHP Video file in a continuous loop

How to play a video file in a continuous loop, as the page is requested, with php?
user855386
  • 61
  • 1
  • 2
0
votes
2 answers

How to implement continuous migration for large website?

I am working on a website of 3,000+ pages that is updated on a daily basis. It's already built on an open source CMS. However, we cannot simply continue to apply hot fixes on a regular basis. We need to replace the entire system and I anticipate the…
Jason L
  • 21
  • 1
  • 5