Profile

On this Page

Overview

This is a Transform type Snap that computes statistics of the incoming data. Each field can be either numeric or categorical, you can use the Type Converter Snap to change the data type appropriately. This is helpful in deriving a statistical analysis of the data in datasets.

The Snap also has an optional second output view. When enabled, this view outputs an HTML file that is a graphical visualization of the first output. If you enable the Value distribution property, the value distribution of each class is also included in the output. 

Output without value distribution:

Input and Output

Expected input: The dataset as a document stream.

Expected output: Statistical details of the dataset. Computation is different based on the type of fields.

  • First Output: Statistical details of the dataset. Computation is different based on the type of fields.
    • For categorical fields, the following is computed:
      • popular: The most popular value
      • total: The total number of documents in the dataset
      • unique values: The number of unique values
      • missing values: The number of whitespaces, null values, and missing values 
      • value distribution: The distribution of values. It is presented with value-frequency pairs. This is not shown if the Value distribution property is not selected.
    • For numerical fields, the following is computed:
      • mean: Average value
      • min: Minimum value
      • max: Maximum value
      • sd: Standard deviation
      • popular: The bin with the highest number of data (if binning is enabled) or the most popular value (if binning is disabled).
      • total: The total number of documents in the dataset
      • unique values: The number of unique values
      • missing values: The number of missing values 
      • value distribution: The distribution of bins (if number of bins is greater than 0) or values (if number of bins is 0). It is presented with bin/value-frequency pairs. This is not shown if the Value distribution property is not selected.
  • Second Output: Optional. HTML-version of the output from the first output view.

Expected upstream Snaps: Any Snap that generates documents. For example, CSV Generator, JSON Generator, or a combination of File Reader and JSON Parser.

Expected downstream Snaps: Any Snap that accepts a document input. For example, Mapper.

Prerequisites

The input document must not have a nested structure.

Configuring Accounts

Accounts are not used with this Snap.

Configuring Views

Input

This Snap has exactly one document input view.
OutputThis Snap has at most two document output views.
ErrorThis Snap has at most one document error view.

Troubleshooting

None

Limitations and Known Issues

None

Modes


Snap Settings


LabelRequired. The name for the Snap. Modify this to be more specific, especially if there are more than one of the same Snap in the pipeline.
Value distribution

If selected, the Snap includes the value distribution of the fields in the output.

Default value: Selected

Top values limit

Required. This property is applicable only to the categorical fields. However, if binning is disabled, this property is also applied to numeric fields. This property limits the number of value-frequency pairs in the value distribution. For example, if the value in this property is 2, then the Snap lists two most-popular values in the dataset along with the number of documents with those values. 

Default value: 100


Configure this as 0 to include all values.

Number of bins

Required. This property is applicable only to the numerical fields in the dataset. It specifies the number of bins. Binning is a method of splitting the data space into N-equally sized ranges where N is the number of bins.

Default value: 10


Configure this as 0 to disable binning.

Maximum memory %

Required. The maximum portion of the node's memory, as a percentage, that is utilized to buffer the incoming dataset. If this percentage is exceeded then the dataset is written to a temporary local file. This configuration is useful in handling large datasets without over-utilization of the node memory. The minimum default memory to be utilized by the Snap is set at 100 MB.

Default value: 10

Snap Execution

Select one of the three modes in which the Snap executes. Available options are:
  • Validate & Execute: Performs limited execution of the Snap, and generates a data preview during Pipeline validation. Subsequently, performs full execution of the Snap (unlimited records) during Pipeline runtime.
  • Execute only: Performs full execution of the Snap during Pipeline execution without generating preview data.
  • Disabled: Disables the Snap and all Snaps that are downstream from it.

Temporary Files

During execution, data processing on Snaplex nodes occurs principally in-memory as streaming and is unencrypted. When larger datasets are processed that exceeds the available compute memory, the Snap writes Pipeline data to local storage as unencrypted to optimize the performance. These temporary files are deleted when the Snap/Pipeline execution completes. You can configure the temporary data's location in the Global properties table of the Snaplex's node properties, which can also help avoid Pipeline errors due to the unavailability of space. For more information, see Temporary Folder in Configuration Options


Examples


Computing Statistics

This example demonstrates how the Profile Snap is used to compute data statistics.

Download this pipeline

 Understanding the pipeline

The input is a CSV document generated by the CSV Generator Snap. This document contains categorical ($class) as well as numeric ($sepal_length$sepal_width$petal_length, and $petal_width) fields. There are also some values missing. Since the output from the Profile Snap depends upon the data types in the input, a Type Converter Snap is added downstream so that all data types are correct. The Type Converter Snap is configured to automatically convert data types based on the field's values. Below is a preview of the output from the Type Converter Snap, this serves as the input for the Profile Snap:

The Profile Snap is configured as shown below:

Statistics of the input documents are computed by the Profile Snap based on its configuration. This is shown in the output preview below:

Statistics of the documents are computed by the Snap depending upon the type of fields.

The $class field being a categorical field, the statistics include:

  • $popular
  • $uniqueValues
  • $missingValues
  • $total
  • $valueDistribution

The $sepal_length$petal_length$petal_width, and $sepal_width being numeric fields, the statistics include:

  • $mean
  • $min
  • $max
  • $stddev
  • $popular
  • $uniqueValues
  • $missingValues
  • $total
  • $valueDistribution

See the Input and Output section above for a description of these fields.

The second output preview of the Profile Snap displays the report. The report is passed to a Document to Binary Snap and then to a File Writer Snap where you can save and download the report in HTML format. The preview of the report in HTML from the File Writer Snap is as follows:


Since the Profile Snap does not work in Ultra Pipelines, you may write the output from the Profile Snap into a file using the JSON Formatter and File Writer Snap. In the Ultra Pipeline, use a File Reader Snap to read this profile. The File Writer Snap in this example is configured as shown below:

Download this pipeline

Additional Example

The following use case demonstrates a real-world scenario for using this Snap:

Downloads

Important steps to successfully reuse Pipelines

  1. Download and import the Pipeline into SnapLogic.
  2. Configure Snap accounts as applicable.
  3. Provide Pipeline parameters as applicable.

  File Modified

File Profile_Compute_Statistics.slp

May 10, 2019 by Mohammed Iqbal

Snap Pack History

 Click to view/expand
ReleaseSnap Pack VersionDateTypeUpdates
February 2024main25112 StableUpdated and certified against the current SnapLogic Platform release.
November 2023main23721Nov 8, 2023StableUpdated and certified against the current SnapLogic Platform release.

August 2023

main22460

Aug 16, 2023

Stable

Updated and certified against the current SnapLogic Platform release.

May 2023

main21015 

Stable

Upgraded with the latest SnapLogic Platform release.

February 2023432patches19960 Latest

The Profile Snap no longer fails if an input document contains a column or field name that includes a forward slash or a backslash.

February 2023main19844 StableUpgraded with the latest SnapLogic Platform release.
November 2022main18944
 
StableUpgraded with the latest SnapLogic Platform release.
August 2022main17386 StableUpgraded with the latest SnapLogic Platform release.
4.29main15993
 
StableUpgraded with the latest SnapLogic Platform release.
4.28main14627
 
StableUpgraded with the latest SnapLogic Platform release.
4.27 Patch427patches13292
 
Latest

Fixed an issue with the Profile Snap, where the Snap failed to create a temporary directory as the temp file path exceeded 255 characters.

4.274.27 (main12833)
 
StableUpgraded with the latest SnapLogic Platform release.
4.264.26 (main11181)
 
StableUpgraded with the latest SnapLogic Platform release.
4.254.25 (main9554)
 
StableUpgraded with the latest SnapLogic Platform release.
4.24

4.24 (main8556)

  
StableUpgraded with the latest SnapLogic Platform release.
4.234.23 (main7430)
 
StableUpgraded with the latest SnapLogic Platform release.
4.224.22 (main6403)
 
StableUpgraded with the latest SnapLogic Platform release.
4.214.21 (snapsmrc542)
 
StableUpgraded with the latest SnapLogic Platform release.
4.204.20 Patch mlanalytics8769
 
Latest

Removed the unused jcc-optional dependency from the ML Analytics Snap Pack. 

4.204.20 (snapsmrc535)
 
StableUpgraded with the latest SnapLogic Platform release.
4.194.19 (snapsmrc528)
 
StableUpgraded with the latest SnapLogic Platform release.
4.184.18 (snapsmrc523)
 
StableUpgraded with the latest SnapLogic Platform release.
4.174.17patch ALL7402
 
LatestUpgraded with the latest SnapLogic Platform release.
4.174.17 (snapsmrc515)
 
Stable
  • Added the Snap Execution field to all Standard-mode Snaps. In some Snaps, this field replaces the existing Execute during preview checkbox.
  • Profile Snap: Added an optional second output view. When enabled, this outputs a graphical representation of the Snap's first output as a HTML file.
4.16

4.16 (snapsmrc508)

 
Stable

Upgraded with the latest SnapLogic Platform release.

4.15

4.15 (snapsmrc500)

 
Stable
  • New Snap Pack. Perform analytic operations such as data profiling. Snaps in this Snap Pack are:
    • Profile
    • Type Inspector