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

Continuous Simulations on Computers

A digital computer is a discrete system. So, does it follow that a continuous model cannot be simulated on a digital computer? It appears that only an approximation of a continuous model via a discrete simulation is possible. From what I've read…
JSuar
  • 21,056
  • 4
  • 39
  • 83
3
votes
1 answer

Ways to define a curve

I'm trying to give shapes in my physics engine roundness/ curvature. I am aware of various methods for mathematically defining curves; such as bezier-cruves, ellipses, etc. However I am not sure which methods would be most appropriate for use in my…
3
votes
2 answers

Continuous SVN Diff with Jenkins/Hudson/Teamcity/etc

After some searching around the web I want to seek your opinion on this topic... I have to monitor developers on many branches in SVN against Trunk. One of the ways I would like to do this is diff between the branch and trunk every night and report…
techarch
  • 1,121
  • 2
  • 20
  • 30
3
votes
1 answer

Finding point of collision (moving circles + time)

For two circles moving linearly, it's easy enough to calculate the time of the collision: http://twobitcoder.blogspot.com/2010/04/circle-collision-detection.html This assumes that the circles have fixed starting points, and fixed movement paths, and…
3
votes
0 answers

Structured streaming continuous trigger fails on Spark 3, but works on Spark 2.4 - a bug?

Finished a POC of Spark structured streaming from Kinesis as a source, it was working fine with Spark 2.4.5, that I had installed locally at the time. Then at some point I had to upgrade to Spark 3.0.0 (also tested with 3.0.1) and this is when it…
3
votes
1 answer

Publish TeamCity artifacts. How to get Build IDs

I´ve created a Artifact path in TeamCity like this: src\MyBuild\bin\Release\* => MyBuild.zip Now I want to publish this created artifact through a download…
Waren
  • 293
  • 2
  • 5
  • 10
3
votes
2 answers

Is there "continuous" versioning?

Is there any revision control/subversioning system out there that allows you/ a group to check out the latest version, and then collaboratively work on it simultaneously? I am thinking something similar to how Gobby works in terms of allowing…
Jeff
  • 1,153
  • 2
  • 15
  • 35
3
votes
1 answer

Error converting between discrete and numeric variables with ggstatsplot

I'm using ggstatsplot() to create some graphs. However, I'm running into a problem with one variable: I keep getting the 'discrete value supplied to a continuous scale' error and I can't figure out why. I've tried as.numeric and creating new…
3
votes
2 answers

Which output activation and loss should I use if I want to predict continuous outcome on 0-1 interval?

I want to predict continuous variable (autoencoder). As I have scaled my inputs by min-max to 0-1 interval, does it make sense to use sigmoid activation in output layer? Sigmoid does not correspond to MSE loss then. Any ideas?
3
votes
1 answer

Tidyverse: Converting numerical data into categorical data for plotting with uneven bin width

Using the tidyverse, I'm looking to discretize numerical data with the goal of using a bar chart to plot the different numerical ranges as if the data were categorical, by manually declaring where the cuts occur, such as with age groups or income…
Chris A.
  • 369
  • 2
  • 14
3
votes
0 answers

Continuous Speech recognition Like OK-Google with multi-language

i implemented google-speak in my projects but its limitation is its respond only 3 second so i loop the code but some time its not responding properly. Is there any lib or service that give support for continue voice recognize.and also how to stop…
Alex sol
  • 57
  • 4
3
votes
1 answer

Constantly Running Python Script With User Input

I want to write a python command line script that will accept user input while simultaneously running another function or script at constant intervals. I have written some pseudo-code below to show what I am aiming for: def main(): …
Skysmithio
  • 91
  • 1
  • 4
3
votes
1 answer

Manually trigger Xcode 9 integration bot

Is there a way to trigger the integration by shell script or apple script or whatever language can be used to trigger the integration of the Xcode 9 integration bot on some external event. What I would like to do is to setup a CI build chain, which…
alex da franca
  • 1,450
  • 2
  • 15
  • 27
3
votes
3 answers

Proper way to stop an infinitely rotating image? and how does one implement removeAllAnimations?

I'd like to use a button as a toggle – click once & an image rotates indefinitely. Click again, the image stops, click again, it restarts. I found this answer helpful in getting the animation to continue: Rotate a view for 360 degrees indefinitely…
Gallaugher
  • 1,593
  • 16
  • 27
3
votes
2 answers

sort points in order to have a continuous curve using python

I have a list of unsorted points: List = [(-50.6261, 74.3683), (-63.2489, 75.0038), (-76.0384, 75.6219), (-79.8451, 75.7855), (-30.9626, 168.085), (-27.381, 170.967), (-22.9191, 172.928), (-16.5869, 173.087), (-4.813, 172.505), (-109.056, 92.0063),…
S.sonia
  • 73
  • 2
  • 8