Questions tagged [simulation]

35 questions
17
votes
1 answer

Visualization of multiple Markov models

I am working on a project where we compare over 10 different Markov models, each representing a different treatment plan. Most often single models are visualized with a decision tree or transition state diagram. However, with multiple different…
Andrew Brown
  • 279
  • 1
  • 3
8
votes
3 answers

How to find out if two datasets are close to each other?

I have the following three datasets. data_a=[0.21,0.24,0.36,0.56,0.67,0.72,0.74,0.83,0.84,0.87,0.91,0.94,0.97] data_b=[0.13,0.21,0.27,0.34,0.36,0.45,0.49,0.65,0.66,0.90] data_c=[0.14,0.18,0.19,0.33,0.45,0.47,0.55,0.75,0.78,0.82] data_a is real data…
6
votes
1 answer

Modeling uncertainty from Logistic Regression

Logistic regression is a part in a simulation pipeline that I use for some scenario analysis. The dataset that this is based on is not small but relatively noisy, and only one explanatory variable/feature. Of course I can say something about this…
Jan van der Vegt
  • 9,448
  • 37
  • 52
5
votes
1 answer

Estimating the value of $\pi$ with a Monte Carlo dartboard: $<$ or $\leq$?

I'm trying to figure out which is the proper way to estimate $\pi$ using the Monte Carlo method randomly distributing points in a square that also contains an inscribed circle. Some sources say to use the comparison of $\sqrt{x^2+y^2}\le 1$, while…
Oatmeal
  • 153
  • 3
5
votes
1 answer

Using simulations to train ML algorithms

Possibly similar question: Is it ok to collect data using algorithm to train another? I have a model that accurately describes an underlying physical, complex, system. The model is basically a set of ODEs based on the physics of the system,…
apetros85
  • 153
  • 1
  • 4
4
votes
1 answer

What visualization I should choose for Monte Carlo simulations in timeline events?

I wasn't sure if I should open this question in Cross Validated or here. But since the question belongs to a bigger project related with Data Science, I chose this one. I will present a simplified version of my working project, since the original is…
Tasos
  • 3,960
  • 5
  • 25
  • 54
3
votes
1 answer

Finding similarity between two datasets

I have two datasets. One is actual percentage of white population in counties in an american state and the other is the simulated percentage of white population in counties in an american state. Bits about my simulation: It is a random simulation…
3
votes
2 answers

Similarity Measure of Simulated Time Series vs Observed time Series

In my work I have an observed Time Series and Simulated ones. I want to compare the Light Curves and check for similarityto find out which simulated curve fits best respectivley which parameters simulate the Light Curve the best. At the moment I do…
2
votes
2 answers

Ways to simulate weather data over several periods (Python or R)?

I have a time series dataset that has several variables for a state/province for fixed periods of time. That is for state A, there are samples from April 2017 to July 2019. Of course, I thought adding precipitation and temperature variables would be…
Shiv_90
  • 265
  • 2
  • 12
2
votes
1 answer

How to simulate customer walk-ins for a given period in a fast food chain in R

I would really appreciate it if someone could tell me where I would start in tackling the following tasks in R. I'm not a data-science expert and am trying to teach myself data-analysis from a background in physics. I have introductory statistics…
mayo naise
  • 21
  • 1
2
votes
0 answers

Similarity Measure Time Series

In my work I have an observed Time Series and Simulated ones. I want to compare the Light Curves and check for similarityto find out which simulated curve fits best respectivley which parameters simulate the Light Curve the best. At the moment I do…
2
votes
0 answers

ML/Statistical Model to Analyse the Distribution

Consider a Sample Data-set provided below; |ShopID| |Transactions| |dist_to_shop| S1 15478 0 S2 12345 0.41 S3 17865 0.11 S4 35479 0.57 …
2
votes
1 answer

Testing Multi-Arm Bandits on Historical Data

Suppose I want to test a multi-arm bandit algorithm in the contextual setting on a set of historical data. For simplicity, let's assume there are only two arms A and B and suppose the rewards are binary. Furthermore, suppose I have a data set where…
2
votes
1 answer

Benchmark Neural Networks on High-Dimensional Functions

For a personal project, I am interested in benchmarking certain neural network architectures in the context of high-dimensional function approximation. Specifically, I am interested in continuous, smooth, Hölder, and Sobolev functions defined on…
user82261
  • 121
  • 1
2
votes
0 answers

Building a simulator for continuous state, discrete action reinforcement learning

I am trying to build a simulator that optimizes the performance and temperature of a device. I want the device to perform well, but without making the device too hot. If the device becomes too hot, I want the internal circuitry to push down the…
user126806
  • 21
  • 1
1
2 3