Docs.rs
  • ndarray-histogram-0.2.0
    • ndarray-histogram 0.2.0
    • Docs.rs crate page
    • MIT OR Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • n3vu0r
    • Dependencies
      • itertools ^0.10 normal
      • ndarray ^0.15.6 normal
      • ndarray-slice ^0.2.2 normal
      • noisy_float ^0.2 normal
      • num-integer ^0.1 normal
      • num-traits ^0.2 normal
      • rand ^0.8.5 normal
      • rayon ^1.7.0 normal
      • criterion ^0.4 dev
      • quickcheck ^1.0.3 dev
      • quickcheck_macros ^1.0.0 dev
    • Versions
    • 100% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

Crate ndarray_histogram

logo

Crate ndarray_histogram

  • Version 0.2.0
  • All Items
  • Re-exports
  • Modules
  • Traits

Crates

  • ndarray_histogram
?
Change settings

Crate ndarray_histogram

source ·
Expand description

Histogram support for n-dimensional arrays (ndarray).

Features

  • rayon for parallel sorting and bulk-selection as part of histogram computations.

Re-exports

  • pub use crate::histogram::HistogramExt;
  • pub use ndarray;

Modules

  • errors
    Custom errors returned from our methods and functions.
  • histogram
    Histogram functionalities.
  • interpolate
    Interpolation strategies.

Traits

  • MaybeNan
    A number type that can have not-a-number values.
  • MaybeNanExt
    Extension trait for ArrayBase providing NaN-related functionality.
  • Quantile1dExt
    Quantile methods for 1-D arrays.
  • QuantileExt
    Quantile methods for ArrayBase.

Results

ndarray_histogram::histogram::Grid
An orthogonal partition of a rectangular region in an n…
ndarray_histogram::histogram::Histogram::grid
Borrows an immutable reference to the histogram grid.
ndarray_histogram::histogram::GridBuilder
A builder used to create Grid instances for histogram …
ndarray_histogram::histogram::Grid::eq
ndarray_histogram::histogram::Grid::fmt
ndarray_histogram::histogram::Histogram::new
Returns a new instance of Histogram given a Grid.
ndarray_histogram::histogram::Grid::ndim
Returns the number of dimensions of the region partitioned …
ndarray_histogram::histogram::Grid::clone
ndarray_histogram::histogram::Grid::index
Given an n-dimensional index, i = (i_0, ..., i_{n-1}), …
ndarray_histogram::histogram::Grid::shape
Returns the numbers of bins along each coordinate axis.
ndarray_histogram::histogram::Grid::index_of
Returns an n-dimensional index, of bins along each axis …
ndarray_histogram::histogram::HistogramExt::histogram
Returns the histogram for a 2-dimensional array of points M…
ndarray_histogram::histogram::Grid::projections
Returns the grid projections on each coordinate axis as a …
ndarray_histogram::histogram::Histogram::grid
Borrows an immutable reference to the histogram grid.
ndarray_histogram::histogram::Grid::from
Converts a Vec<Bins<A>> into a Grid<A>, consuming the …
ndarray_histogram::histogram::GridBuilder::build
Returns a Grid instance, with building parameters infered …
ndarray_histogram::histogram::Grid::clone