Sha256: 6c19d6f3ca9106ccc873e8a71ebf7b16c606b50405788feed51d2f15586d14d7

Contents?: true

Size: 319 Bytes

Versions: 11

Compression:

Stored size: 319 Bytes

Contents

# Value from Percentile

Alias: `percentile_rank`

```ruby
collection = [1, 1, 2, 3, 10]
results = 3

klass = Lite::Statistics::Descriptive.new(collection)
klass.value_from_percentile(60)

# - or -

Lite::Statistics::Descriptive.value_from_percentile(collection, 60)

# - or -

collection.value_from_percentile(60)
```

Version data entries

11 entries across 11 versions & 1 rubygems

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