시작하기무료로 시작하기

Plot the standard Gaussian model

The “standard” Gaussian model is a Gaussian model with a mean of zero and a standard deviation of one.

In this exercise, given a set of bins spanning a range of possible values, your goal is to compute and display the theoretical probabilities of each bin.

To do so, use the function NORMDIST(). It has four arguments:

  • x: The value for which you want to compute the density (or the cumulative probability).
  • m: The location (mean) of the Gaussian model.
  • s: The dispersion (standard deviation) of the Gaussian model.
  • cumulative: TRUE if you want the cumulative probability, FALSE if you want the density.

Remember that the probability is the surface below the density curve, and can be computed by taking the difference of the cumulative probability at the boundaries of the bin.

이 연습은 강의의 일부입니다

Google Sheets로 하는 금융 분석

강의 보기

연습 안내

  • In C3, use NORMDIST(UB, 0, 1, TRUE) minus NORMDIST(LB, 0, 1, TRUE)to compute the theoretical probability of the first bin. UB is the upper bound of the bin and LB is the lower bound of the bin.

  • In C4:C35, complete the series by using the autofill feature.

  • Display the probabilities using a column chart and place the series of bins (lower bound) on the horizontal axis. Include cells with titles (A2 and C2) in your chart.

  • Change the title to Gaussian model.

실습형 인터랙티브 연습문제

이론을 실습으로 바꾸는 인터랙티브 연습 중 하나를 만나보세요

연습 시작