Skip to content

Histogram

Detailed information representing a histogram of values.

Complete reference

This is a complete reference for the Histogram struct in Atlan, showing all of its embedded properties. For an introduction, you probably want to start with:

  • Snippets — small, atomic examples of single-step use cases.
  • Patterns — walkthroughs of common multi-step implementation patterns.

Embedded properties

These are the attributes embedded within each instance of the Histogram struct in an asset:

boundaries
Boundaries of the histogram.
1
2
builder.boundaries(...); // (1)
histogram.getBoundaries(); // (2)
  1. Set the boundaries for a Histogram.

    For more details

    For more information, see the asset CRUD snippets on either creating or updating assets.

  2. Retrieve the boundaries from a Histogram.

    For more details

    For more information, see the asset CRUD snippets on retrieving assets.

frequencies
Frequencies of the histogram.
1
2
builder.frequencies(...); // (1)
histogram.getFrequencies(); // (2)
  1. Set the frequencies for a Histogram.

    For more details

    For more information, see the asset CRUD snippets on either creating or updating assets.

  2. Retrieve the frequencies from a Histogram.

    For more details

    For more information, see the asset CRUD snippets on retrieving assets.

boundaries
Boundaries of the histogram.
1
2
3
4
5
{
  "attributes": {
    "boundaries": ... // (1)
  }
}
  1. Set the boundaries for a Histogram.

    For more details

    For more information, see the asset CRUD snippets.

frequencies
Frequencies of the histogram.
1
2
3
4
5
{
  "attributes": {
    "frequencies": ... // (1)
  }
}
  1. Set the frequencies for a Histogram.

    For more details

    For more information, see the asset CRUD snippets.