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.

393 questions
7
votes
2 answers

Continuous Performance Monitoring of .NET Applications in Production?

Given a relatively typical .NET 4 system in an SOA environment (i.e. Windows Server 2008 R2, RESTful Web Services on IIS 7, Windows Services for NServiceBus messaging, SQL Server 2008 R2, etc) what are the best practices or de facto solutions…
Ilya Kozhevnikov
  • 9,626
  • 4
  • 34
  • 66
6
votes
3 answers

Stream a continuously growing file over tcp/ip

I have a project I'm working on, where a piece of Hardware is producing output that is continuously being written into a textfile. What I need to do is to stream that file as it's being written over a simple tcp/ip connection. I'm currently trying…
Grinner
  • 317
  • 7
  • 17
6
votes
1 answer

Need opinions on LaTeX and ever upgrading

I've been using LaTeX since 2005 with the TeXLive distribution and I've been upgrading as each new TeXLive distribution comes out. In the recent years I noticed an increase in new packages, updated packages and in one instance a new package bearing…
yCalleecharan
  • 4,468
  • 9
  • 52
  • 82
6
votes
1 answer

Create binned variable from results of class interval determination

I want to create a binned variable out of a continuous variable. I want 10 bins, with break points set from whatever results from a jenks classification. How do I assign each value to one of these 10 bins? # dataframe w/ values (AllwdAmt) df <-…
NiuBiBang
  • 630
  • 1
  • 13
  • 27
6
votes
2 answers

Android How to run an AsyncTask every second?

I'm new in Android and not really knowing how to deal this problem: I have an AsyncTask which reads a position (X,Y,Z) from a XML file. As this position changes every second, I want, after I push a button (called with "StartListener") to read and…
user2748484
  • 123
  • 1
  • 10
5
votes
2 answers

How to constanly monitor LogCat file?

I need to somehow monitor the LogCat log, meaning that while my service is running I need to read the LogCat for new entries. At this moment I know only how to retrieve once the Log: Process mLogcatProc = null; BufferedReader reader = null; …
Alex
  • 2,153
  • 4
  • 29
  • 43
5
votes
2 answers

Continuous gradient color & fixed scale heatmap ggplot2

I'm switching from Mathematica to R but I'm finding some difficulties with visualizations. I'm trying to do a heatmap as follows: short penetration scc pi0 1 0 0 0.002545268 2 5 0 -0.408621176 3 10 …
jlp
  • 148
  • 1
  • 2
  • 8
5
votes
3 answers

sql rank only continuous rows

I have a query in which I am ranking the rows on the basis of 3 columns. I am successful in doing so, except that if any row contains same data in those 3 columns, it gives it the next rank even if it is not continuous in the output. I want that if…
Hemant Sisodia
  • 460
  • 5
  • 19
5
votes
1 answer

python return lists of continuous integers from list

I have a list of integers, and I want to generate a list containing a list of all the continuous integers. #I have: full_list = [0,1,2,3,10,11,12,59] #I want: continuous_integers = [[0,1,2,3], [10,11,12], [59]] I have the following which works, but…
ded
  • 396
  • 1
  • 10
5
votes
2 answers

NMAP continuous ping

I need to implement a code which is able to send ping packets each second toward a certain amount of destinations. The problem is that I'd like to ping as much destinations as possible inside 1 second window. For this reason I was thinking if there…
NotoAnonimo
  • 151
  • 2
  • 7
5
votes
1 answer

JS counter continuously updating

How to implement a live and persistent number counter on a site So I was looking at this question (^) and I want to do the exact same thing except a little different. I need one of these that counts up 15.8 cents per second from the numb…
user1600005
  • 61
  • 1
  • 4
4
votes
5 answers

How do you continuously deploy a large system consisting of several applications

At the moment we are deploying our whole application chain together and at once to production, because of the many dependencies that the systems have. Our Scrum teams are business theme based in order to ensure real business value at the end of…
Emwee
  • 455
  • 1
  • 5
  • 7
4
votes
1 answer

Change fill/colour for geom_dotplot or geom_histogram with a continuous variable

Is it possible to fill ggplot's geom_dotplot with continuous variables? library(ggplot2) ggplot(mtcars, aes(x = mpg, fill = disp)) + geom_dotplot() this should be pretty straightforward, but I've tried messing with the groups aes and no…
Omar Omeiri
  • 400
  • 4
  • 12
4
votes
1 answer

Box plot for continuous data in Python

I have a csv file with 2 columns: col1- Timestamp data(yyyy-mm-dd hh:mm:ss.ms (8 months data)) col2 : Heat data (continuous variable) . Since there are almost 50k record, I would like to partition the col1(timestamp col) into months or weeks and…
Unknown
  • 75
  • 2
  • 10
4
votes
2 answers

Continuous or categorical data in data science

I am building an automated cleaning process that clean null values from the dataset. I discovered few functions like mode, median, mean which could be used to fill NaN values in given data. But which one I should select? if data is categorical it…
1
2
3
26 27