Inverse Cumulative Distribution Function

Inverse Cumulative Distribution Function

Inverse Cumulative Distribution Function

Description

Inverse Cumulative Distribution Function (ICDF) is the inverse of Cumulative Distribution Function (CDF). It helps to learn about the distribution of data by calculating the value associated with a specific cumulative probability in the dataset.

Why to use

To determine the value of the variable or feature associated with a specific probability.

When to use

For numerical variables having positive integer values.

When not to use

For numerical variables having values less than 0.

Prerequisites

  • The values of data points should be in the range between 0 and 1.
  • The data should not contain any missing values.

Input

One numerical variable having values between 0 and 1.

Output

  • ICDF Curve
  • Quantile values predicted by the ICDF

Statistical Methods used

  • Quantile function
  • Probability

Limitations

It can be used only on numerical data.


The Inverse Cumulative Distribution Function determines the original value of the randomly selected variable for the given probability value from the dataset.

By default, the data is sorted and then sent to the algorithm. Also, in the output Data tab, the resultant data appears in a sorted manner.

    • Related Articles

    • Cumulative Distribution Function

      Cumulative Distribution Function Description The Cumulative Distribution Function (CDF) helps to learn about the distribution of data by calculating the cumulative probability of a given variable value in a dataset. Why to use To calculate the ...
    • Parametric Distribution Fitting

      Parametric Distribution Fitting Description Parametric distribution fitting is the process used to select a statistical distribution that best fits a data set. Why to use Statistical Analysis When to use To decide the distribution best suited for ...
    • Rubiscape Spring '22

      New Features Platform & Studio Rubiscape Persistent variables in workflow and workbook - The user can declare a variable to be remembered between function calls Separate Service for Visualization - Provide separate service for Visualization which ...
    • Statistical Concepts

      Accuracy Accuracy (of classification) of a predictive model is the ratio of the total number of correct predictions made by the model to the total predictions made. Thus, Accuracy = (TP + TN) / (TP + TN + FP + FN) Where, TP, TN, FP, and FN indicate ...
    • Time-series Data Preparation

      Time-series Data Preparation organizes and formats transactional data into time-series data to predict trends and seasonality in the data. Transactional data is timestamped data recorded over a period at no specific frequency, while time-series data ...