Uni-variate Non-Graphical Exploratory Data Analysis (EDA)
Uni-variate Non-Graphical EDA is the numerical examination of a single variable without using charts or graphs. The goal is to understand the dataβs central value, spread, position, shape, and quality using statistical measures.
- Meaning
Uni-variate β Only one variable is analyzed
Non-Graphical β Uses numbers and statistics, not plots
Exploratory β No assumptions; aims to discover patterns, anomalies, and summaries
π Example variables: exam marks, age, income, daily sales, temperature.
- Objectives
Summarize the data numerically
Identify central tendency
Measure variability (dispersion)
Understand relative position of values
Detect outliers
Assess distribution shape
Check data quality
- Techniques Used in Uni-variate Non-Graphical EDA A. Measures of Central Tendency
Describe the typical or center value.
- Mean π₯Λ=βπ₯πxΛ=nβx β
Most common average
Highly affected by outliers
- Median
Middle value of ordered data
Resistant to extreme values
- Mode
Most frequent value
Useful for discrete or categorical data
B. Measures of Dispersion
Describe how spread out the data is.
- Range Range = Max β Min Range=MaxβMin
Variance
π2=β(π₯βπ₯Λ)2πΟ2=nβ(xβxΛ)2
βStandard Deviation
π=π2Ο=Ο2
β
Most widely used spread measure
-
Inter-quartile Range (IQR)
IQR=π3βπ1β
Spread of middle 50%
Less affected by outliers
C. Measures of Position
Describe relative standing of values.
Percentiles (P10, P50, P90)
Quartiles (Q1, Q2, Q3)
Deciles (D1 to D9)
π Example: 75th percentile means 75% of data lies below it.
D. Measures of Distribution Shape :
- Skewness
Positive skew β Right tail longer
Negative skew β Left tail longer
Zero skew β Symmetrical distribution
- Kurtosis
Measures peakedness or tail thickness
Leptokurtic β Sharp peak
Mesokurtic β Normal
Platykurtic β Flat
- Outlier Detection (Non-Graphical) IQR Method Lower limit =π1β1.5(IQR) Lower limit=Q1β1.5(IQR) Upper limit=π3+1.5(IQR)
Values outside β Outliers
Z-Score Method
π§=π₯βπ/π
β
|z| > 3 β Potential outlier
- Data Quality Checks
Uni-variate Non-Graphical EDA helps detect:
Missing values
Invalid values (negative age)
Extreme or impossible values
Data entry errors
- Advantages
β Simple and fast
β No visualization required
β Works well for summaries
β Ideal for exam and theory questions
- Limitations
β No visual insight
β Cannot show trends
β Less intuitive for large datasets
- Example
Data: 10, 12, 15, 18, 20, 25, 40
Mean = 20
Median = 18
Range = 30
IQR = Moderate
Skewness = Positive
Outlier = 40
- Conclusion
Uni-variate Non-Graphical Exploratory Data Analysis is a numerical approach to understand a single variable by analyzing its center, spread, position, shape, and qualityβwithout using graphs. It is a foundation step before advanced statistical analysis.


Top comments (0)