Call Us

Home / Blog / Data Science / Data Science Formulae

Data Science Formulae

  • September 29, 2023
  • 5074
  • 85
Author Images

Meet the Author : Mr. Bharani Kumar

Bharani Kumar Depuru is a well known IT personality from Hyderabad. He is the Founder and Director of Innodatatics Pvt Ltd and 360DigiTMG. Bharani Kumar is an IIT and ISB alumni with more than 18+ years of experience, he held prominent positions in the IT elites like HSBC, ITC Infotech, Infosys, and Deloitte. He is a prevalent IT consultant specializing in Industrial Revolution 4.0 implementation, Data Analytics practice setup, Artificial Intelligence, Big Data Analytics, Industrial IoT, Business Intelligence and Business Management. Bharani Kumar is also the chief trainer at 360DigiTMG with more than Ten years of experience and has been making the IT transition journey easy for his students. 360DigiTMG is at the forefront of delivering quality education, thereby bridging the gap between academia and industry.

Read More >

Measures of Central Tendency

360DigiTMGED

Measures of Dispersion

360DigiTMGED 360DigiTMGED

360DigiTMG also offers the Data Science Course in Hyderabad to start a better career. Enroll now!

Graphical Representation

Box Plot calculations

Upper limit = Q3 + 1.5(IQR)
IQR: Q3 – Q1
Lower limit = Q1 – 1.5(IQR)

8) Histogram calculations

Number of Bins = √n

Where n: number of records
Bin width = Range / Number of bins
Where Range: Max – Min value
Number of bins: √number of records

Normalization

360DigiTMGED

Standardization

360DigiTMGED

Robust Scaling

360DigiTMGED

12) Theoretical quantiles in Q-Q plot = X - µ / σ

Want to learn more about data science? Enroll in this Data Science Classes in Bangalore to do so.

Where X: the observations
µ: mean of the observations
σ: standard deviation

13) Correlation (X, Y)

r = Σ((Xįµ¢ - XĢ„) * (Yįµ¢ - Č²)) / √(Σ(Xįµ¢ - XĢ„)² * Σ(Yįµ¢ - Č²)²)

Where:
Xįµ¢ and Yįµ¢ are the individual data points for the respective variables.
XĢ„ (X-bar) and Č² (Y-bar) are the sample means of variables X and Y, respectively.
Σ represents the sum across all data points.

14) Covariance (X, Y)

Cov(X, Y) = Σ((Xįµ¢ - XĢ„) * (Yįµ¢ - Č²)) / (n - 1)

Where:
Xįµ¢ and Yįµ¢ are the individual data points for the respective variables.
XĢ„ (X-bar) and Č² (Y-bar) are the sample means of variables X and Y, respectively.
Σ represents the sum across all data points.
n is the total number of data points.

Are you looking to become a Data Scientist? Go through 360DigiTMG's Data Science Course in Chennai

Box-Cox Transformation

360DigiTMGED

Yeo- Johnson Transformation

360DigiTMGED

Unsupervised Techniques

Clustering

Distance formulae(Numeric)

360DigiTMGED

Distance formulae (Non- Numeric)

360DigiTMGED

Dimension Reduction

Also, check this Data Science Course Training in Hyderabad to start a career in Data Science.

Singular Value Decomposition (SVD)

360DigiTMGED

Association Rule

Support (s):

360DigiTMGED

Confidence (c)

360DigiTMGED

Lift (l)

360DigiTMGED

Recommendation Engine

Cosine Similarity

360DigiTMGED

Network Analytics

360DigiTMGED

Closeness Centrality

360DigiTMGED

Betweeness Centrality

360DigiTMGED

Google Page Rank Algorithm

360DigiTMGED

Text mining

Term Frequency (TF)

360DigiTMGED

Inverse Document Frequency (IDF)

360DigiTMGED

TF-IDF (Term Frequency-Inverse Document Frequency)

360DigiTMGED

Supervised Techniques

Bayes' Theorem

360DigiTMGED

K-Nearest Neighbor (KNN)

Euclidean distance is specified by the following formula,

360DigiTMGED

Decision Tree:

Information Gain = Entropy before – Entropy after

Entropy

360DigiTMGED

Confidence Interval

360DigiTMGED

Regression

Simple linear Regression

360DigiTMGED

Equation of a Straight Line

The equation that represents how an independent variable is related to a dependent variable and an error term is a regression model

360DigiTMGED

Where, β0 and β1 are called parameters of the model,

ε is a random variable called error term.

360DigiTMGED

 

Regression Analysis

R-squared-also known as Coefficient of determination, represents the % variation in output (dependent variable) explained by input variables/s or Percentage of response variable variation that is explained by its relationship with one or more predictor variables

  • Higher the R^2, the better the model fits your data
  • R^2 is always between 0 and 100%
  • R squared is between 0.65 and 0.8 => Moderate correlation
  • R squared in greater than 0.8 => Strong correlation
360DigiTMGED

Multilinear Regression

360DigiTMGED

Logistic Regression

360DigiTMGED 360DigiTMGED

Lasso and Ridge Regression

360DigiTMGED 360DigiTMGED

Residual Sum of Squares + λ * (Sum of the absolute value of the magnitude of coefficients)

Where, λ: the amount of shrinkage.

λ = 0 implies all features are considered and it is equivalent to the linear regression where only the residual sum of squares is considered to build a predictive model

λ = ∞ implies no feature is considered i.e., as λ closes to infinity it eliminates more and more features

  • Ridge = Residual Sum of Squares + λ * (Sum of the squared value of the magnitude of coefficients)

Where, λ: the amount of shrinkage

Advanced Regression for Count data

360DigiTMGED

Negative Binomial Distribution

360DigiTMGED

Poisson Distribution

360DigiTMGED

Become a Data Scientist with 360DigiTMG Best Institute for Data Science Course in Chennai. Get trained by the alumni from IIT, IIM, and ISB.

Time Series:

Moving Average (MA)

The moving average at time "t" is calculated by taking the average of the previous "n" observations:

MAā‚œ = (yā‚œ + yā‚œā‚‹ā‚ + yā‚œā‚‹ā‚‚ + ... + yā‚œā‚‹ā‚™) / n

  • Exponential Smoothing

Exponential smoothing gives more weight to recent observations. The smoothed value at time "t" is calculated using a weighted average:

Sā‚œ = α * yā‚œ + (1 - α) * Sā‚œā‚‹ā‚

Where "α" is the smoothing factor.

  • Autocorrelation Function (ACF)

Correlation between a variable and its lagged version (one time-step or more)

360DigiTMGED

Yt = Observation in time period t
Yt-k = Observation in time period t – k
Ó® = Mean of the values of the series
rk = Autocorrelation coefficient for k-step lag

 

  • Partial Autocorrelation Function (PACF):

The partial autocorrelation function measures the correlation between observations at different lags while accounting for intermediate lags. The PACF at lag "k" is calculated as the coefficient of the lag "k" term in the autoregressive model of order "k":
PACFā‚– = Cov(yā‚œ, yā‚œā‚‹ā‚– | yā‚œā‚‹ā‚, yā‚œā‚‹ā‚‚, ..., yā‚œā‚‹ā‚–ā‚‹ā‚) / Var(yā‚œ)

Confusion Matrix

360DigiTMGED
  • True Positive (TP) = Patient with disease is told that he/she has disease
  • True Negative (TN) = Patient with no disease is told that he/she does not have disease
  • False Negative (FN) = Patient with disease is told that he/she does not have disease
  • False Positive (FP) = Patient with no disease is told that he/she has disease

Overall error rate = (FN+FP) / (TP+FN+FP+TN)

Accuracy = 1 – Overall error rate OR (TP+TN) / (TP+FN+FP+TN); Accuracy should be > % of majority class

Precision = TP/(TP+FP) = TP/Predicted Positive = Prob. of correctly identifying a random patient with disease as having disease

Sensitivity (Recall or Hit Rate or True Positive Rate) = TP/(TP+FN) = TP/Actual Positive = Proportion of people with disease who are correctly identified as having disease

Specificity (True negative rate) = TN/(TN+FP) = Proportion of people with no disease being characterized as not having disease

  • FP rate (Alpha or type I error) = 1 – Specificity
  • FN rate (Beta or type II error) = 1 – Sensitivity
  • F1 = 2 * ((Precision * Recall) / (Precision + Recall))
  • F1: 1 to 0 & defines a measure that balances precision & recall

Forecasting Error Measures

360DigiTMGED
  • MSE = (1/n) * Σ(Actual – Forecast)2
    Where n: sample size
    Actual: the actual data value
    Forecast: the predicted data value
  • MAE = (1/n) * Σ |Actual – Forecast| Where n: sample size
    Actual: the actual data value
    Forecast: the predicted data value
  • MAPE = (1/n) * Σ |Actual – Forecast| / Actual
    Where n: sample size
    Actual: the actual data value
    Forecast: the predicted data value
  • RMSE = √(1/n) * Σ(Actual – Forecast)2
    Where n: sample size
    Actual: the actual data value
    Forecast: the predicted data value
  • MAD = (1/n) * Σ |Actual – µ|
    Where n: sample size
    Actual: the actual data value & µ: mean of the given set of data
  • SMAPE = (1 / n) * Σ( |Fįµ¢ - Aįµ¢| / (|Fįµ¢| + |Aįµ¢|) ) * 100%
    Where:
    Fįµ¢ represents the forecasted value.
    Aįµ¢ represents the actual value.

 Looking forward to becoming a Data Scientist? Check out the Professional Course of Data Science Course in Bangalore and get certified today.

Data Science Placement Success Story

Data Science Training Institutes in Other Locations

 

Navigate to Address

360DigiTMG - Data Analytics, Data Science Course Training in Chennai

1st Floor, Santi Ram Centre, Tirumurthy Nagar, Opposite to Indian Oil Bhavan, Nungambakkam, Chennai - 600006

1800-212-654-321

Get Direction: Data Science Course

Make an Enquiry