Questions tagged [statistics]
Consider whether your question would be better asked at CrossValidated, a Stack Exchange site for probability, statistics, data analysis, data mining, and machine learning. Code Review questions on statistics should be about implementation and working program review, not about theoretical discussions of statistics or research design.
368 questions
0 votes
0 answers
8 views
A tiny Java framework for gathering running time statistics - Take III
From the previous post, I have incorporated the nice answers made by Chris and Chip01. Code ...
4 votes
3 answers
99 views
A tiny Java framework for gathering running time statistics
Intro (See the next iteration A tiny Java framework for gathering running time statistics - Take II.) I have this tiny Java framework that allows users to gather running time statistics of a piece of ...
8 votes
2 answers
325 views
Rolling mean with tolerance of missing values
I have a position sensor that is somewhat unreliable. The values it returns are generally accurate, but it can sometimes fail to detect its target, in which case I get no value back. I want to ...
2 votes
1 answer
194 views
Java program for calculating probabilities of die combinations in Yatzy
Yatzy Yatzy is a dice rolling game where players aim to get particular die combinations. This program counts probability of each such combinations. They are: All five ones, All five twos, Same for ...
5 votes
2 answers
429 views
Plot number of concurrent jobs on time axel
Description: Calculate the number of concurrently running jobs for any given minute during a day. Each Job is scheduled to run X ...
2 votes
1 answer
186 views
First order hidden Markov model with Viterbi algorithm in Java
Introduction A first order HMM (hidden Markov model) is a tuple \$(H, \Sigma, T, E, \mathbb{P})\$, where \$H = \{1, \ldots, \vert H \vert\}\$ is the set of hidden states, \$\Sigma\$ is the set of ...
3 votes
1 answer
82 views
A JavaFX program to find out the mouse refresh rate v2
(See the continuation of this post in A JavaFX program to find out the mouse refresh rate v3.) (This post is a continuation of A JavaFX program to find out the mouse refresh rate.) After adopting the ...
5 votes
1 answer
239 views
A simple probabilistic AI for generating random sentences in Java
Motivation I have this repository. It contains a program that analyzes an input text file and builds a word graph: in the graph, each node represents a word in the analyzed text. Now, if there are two ...