You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* stats (Optional). This is a logical value specifying whether to return additional regression statistics.
2577
+
2578
+
## GAUSS
2579
+
2580
+
The `GAUSS` function calculates the probability that a value from a standard normal distribution will fall between the mean and a specified number of standard deviations (z) from the mean.
2581
+
2582
+
**Syntax:**
2583
+
2584
+
_GAUSS(z)_
2585
+
2586
+
**where:**
2587
+
2588
+
* z : The number of standard deviations away from the mean. A positive value indicates a point is above the mean, while a negative value indicates a point below the mean.
2589
+
2590
+
**Remarks:**
2591
+
2592
+
* If z is not a valid number, GAUSS returns the `#NUM!` error.
2593
+
2594
+
* If z is not a valid data type, GAUSS returns the `#VALUE!` error.
2595
+
2596
+
* Since NORM.S.DIST(0,TRUE) always returns 0.5, GAUSS(z) will always be 0.5 less than NORM.S.DIST(z,TRUE).
2597
+
2598
+
## GAMMA
2599
+
2600
+
The `GAMMA` function returns the value of the gamma function for a specified number.
2601
+
2602
+
**Syntax:**
2603
+
2604
+
_GAMMA(number)_
2605
+
2606
+
**where:**
2607
+
2608
+
* Number: The value for which the gamma function is to be calculated.
2609
+
2610
+
**Remarks:**
2611
+
2612
+
* The `GAMMA` function uses the following relationship: Γ(N+1)=N×Γ(N).
2613
+
2614
+
* If Number is a negative integer or 0, `GAMMA` returns the `#NUM!` error.
2615
+
2616
+
* If Number contains characters or non-numeric data, `GAMMA` returns the `#VALUE!` error.
2617
+
2618
+
## VAR.S
2619
+
2620
+
The `VAR.S` function estimates the variance for a sample of a population, ignoring logical values and text within the sample.
2621
+
2622
+
**Syntax:**
2623
+
2624
+
_VAR.S(number1, [number2], ... )_
2625
+
2626
+
**where:**
2627
+
2628
+
* Number1: Required. The first number or sample from the population.
2629
+
2630
+
* Number2, ...: Optional. Additional numbers, up to 254, representing the sample data.
2631
+
2632
+
**Remarks:**
2633
+
2634
+
*`VAR.S` assumes the arguments represent a sample of the population. If your data represents the entire population, use `VAR.P`.
2635
+
2636
+
* Arguments can include numbers, arrays, or references containing numbers. Logical values and text representations of numbers entered directly are included.
2637
+
2638
+
* Only numbers within arrays or references are counted; empty cells, logical values, text, or errors are ignored.
2639
+
2640
+
* Arguments that are error values or non-numeric text will cause errors.
2641
+
To include logical values and text numbers in references, use the `VARA` function.
2642
+
2643
+
## FREQUENCY
2644
+
2645
+
The `FREQUENCY` function calculates how often values occur within specified ranges and returns an array representing the frequency distribution.
2646
+
2647
+
**Syntax:**
2648
+
2649
+
_FREQUENCY(data_array, bins_array)_
2650
+
2651
+
**where:**
2652
+
2653
+
* data_array: An array or reference to the set of values for which you want to count frequencies.
2654
+
2655
+
* bins_array: An array or reference to intervals that define the frequency ranges.
2656
+
2657
+
**Remarks:**
2658
+
2659
+
* The `FREQUENCY` function returns an array with one more element than the number of elements in bins_array. The extra element represents the count of values in data_array that are greater than the highest value in bins_array.
2660
+
2661
+
* If data_array contains no values, `FREQUENCY `returns an array of zeros.
2662
+
2663
+
* If bins_array contains no values, `FREQUENCY` returns the total number of elements in data_array.
2664
+
2665
+
*`FREQUENCY` ignores blank cells and text in data_array.
0 commit comments