Questions tagged [bell-curve]

22 questions
0
votes
1 answer

HighCharts - round the mean value on bellcurve

How can I display only 3 digits after comma on the bell curve for both mean and standard deviation? On the chart itself. This is what I have done. It works for the standard deviation but not for the mean. I couldn't figure out the issue. tooltip:…
0
votes
1 answer

HighCharts - pass mean value from bell curve to a function

I am using Highcharts and I have a histogram with bull curve behind. Everything works well, bell curve generates mean and standard deviation numbers . I would like to know if there is a way of passing the mean and standard deviation numbers that…
0
votes
0 answers

Draw a Bell Curve on my Distribution Sample

I have the following piece of code: from pyspark.sql import DataFrame import plotly.express as px import matplotlib.pyplot as plt dfPy = sqlContext.table("df") pd = dfPy.toPandas() pd[['col4']].plot(kind='hist',…
joesan
  • 13,963
  • 27
  • 95
  • 232
0
votes
1 answer

How to emulate normal distribution data by actual, real life events, instead of using a math formula?

I am trying to generate some Bell Shape data (Normal Distribution). There are some math formula to achieve that, but I am hoping to emulate it by natural, daily events that happen in real life. For example, I am saying, for 50 students, assuming…
0
votes
0 answers

Smooth bell curve from N points javascript or php using 1, 2, 3, 4, 5 etc CanvasJs

I've been searching day and have found several examples but have yet to actually get a working formula to achieve what I'm trying to do. On the surface I though it would be rather easy but I have been proven wrong. I have a php script that prints…
-1
votes
1 answer

Fit a quantity of items to a binomial distribution / bell curve

This is a sort of discrete math integration question - I need to fit a fixed quantity of items to a binomial distribution or bell curve over a fixed period. Say I a total of M boxes being shipped over T days, where n is the number boxes that arrive…
Dycey
  • 4,767
  • 5
  • 47
  • 86
-2
votes
1 answer

R in counting data

Right now I'm trying to do a bell curve on a file called output9.csv on my. Here is my code, I want to uses z score to detect outliers, and uses the difference between the value and mean of the data set.The difference is compared with standard…
1
2