R code demonstrated at
6PAS2 Probability and Statistic 2, summer semester 2025/2026.
Class 4 (Mar 4 2026)
Function for computing standard deviation with "n" in denominator, from
Homework 5:
sd1 <- function (x)
{
m <- mean(x);
sqrt (sum ((x - m)^2) / length(x));
}
Created: Thu Oct 29 2015
Last modified: Wed Apr 1 2026 19:18:12 CEST