Sha256: 308cd32ac865a43da709a5db2ac75d9e309b426f044fab18eab6aff3b52751de

Contents?: true

Size: 315 Bytes

Versions: 11

Compression:

Stored size: 315 Bytes

Contents

# Percentile from Value

Alias: `percentile`

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

klass = Lite::Statistics::Descriptive.new(collection)
klass.percentile_from_value(10)

# - or -

Lite::Statistics::Descriptive.percentile_from_value(collection, 10)

# - or -

collection.percentile_from_value(10)
```

Version data entries

11 entries across 11 versions & 1 rubygems

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