Sha256: e1e7e9a96cdb0719c1d4152b8ba22be61b66a50f0557d3156ed31eba7a406b4d

Contents?: true

Size: 401 Bytes

Versions: 9

Compression:

Stored size: 401 Bytes

Contents

# Sample|Population Z-Scores

Alias: `zscores`

```ruby
collection = [1, 1, 2, 3, 10]
results = {
  1 => -0.7095748751868991,
  2 => -0.4139186771923578,
  3 => -0.11826247919781649,
  10 => 1.9513309067639724
}

klass = Lite::Statistics::Descriptive.new(collection)
klass.sample_zscores

# - or -

Lite::Statistics::Descriptive.population_zscores(collection)

# - or -

collection.sample_zscores
```

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lite-statistics-2.0.0 docs/descriptive/ZSCORES.md
lite-statistics-1.2.1 docs/descriptive/ZSCORES.md
lite-statistics-1.2.0 docs/descriptive/ZSCORES.md
lite-statistics-1.1.1 docs/descriptive/ZSCORES.md
lite-statistics-1.1.0 docs/descriptive/ZSCORES.md
lite-statistics-1.0.5 docs/descriptive/ZSCORES.md
lite-statistics-1.0.4 docs/descriptive/ZSCORES.md
lite-statistics-1.0.3 docs/descriptive/ZSCORES.md
lite-statistics-1.0.2 docs/descriptive/ZSCORES.md