Introduction
Mixed-graph questions दो अलग-अलग data displays को combine करते हैं - आमतौर पर bar chart के साथ line chart या table के साथ pie chart। इनका उपयोग absolute values (bars / table) को rates या percentages (line / pie) के साथ compare करने के लिए किया जाता है।
यह pattern इसलिए important है क्योंकि real-world data में counts और rates अक्सर साथ दिखते हैं (जैसे sales volume vs profit margin)। आपको दोनों displays को सही तरह पढ़कर datasets को link करना होता है और फिर required calculations करनी होती हैं।
Pattern: Mixed Graphs (Bar + Line / Table + Pie)
Pattern
Key concept: हर display से values अलग-अलग निकालें (bar/table → absolute values; line/pie → percentage या trend), फिर सही formulas से combine करें (percentage of total, ratio, difference, या derived value जैसे profit = sales × profit%).
Common steps:
1. Bar/table से absolute numbers पढ़ें।
2. Line/pie से percentages या trends पढ़ें।
3. Formula apply करें: Value = (percent × base) ÷ 100 या rate और volume combine करके derived amount निकालें।
Step-by-Step Example
Question
नीचे दिया गया chart एक combined bar (sales in ₹ lakhs) और line (profit %) graph है। Table में उसी अवधि के Discounts (₹ lakhs) दिए गए हैं।
Find: (a) 2023 का profit amount (₹ lakhs), और (b) 2023 का net revenue (Sales - Discount)।
| Year | Discount (₹ lakhs) |
|---|---|
| 2021 | 10 |
| 2022 | 12 |
| 2023 | 20 |
Given: Sales 2023 = ₹200 lakhs; Profit% 2023 = 15%; Discount 2023 = ₹20 lakhs.
Solution
-
Step 1: Base values identify करें
Sales = 200 lakhs; Profit% = 15%; Discount = 20 lakhs
-
Step 2: Percentage formula apply करें
Profit = (15 × 200) ÷ 100
-
Step 3: Profit amount compute करें
Profit = 30 lakhs
-
Step 4: Net revenue निकालें
Net revenue = 200 - 20 = 180 lakhs
-
Final Answer:
Profit = ₹30 lakhs; Net revenue = ₹180 lakhs -
Quick Check:
15% of 200 = 30 ✔️; 200 - 20 = 180 ✔️
Quick Variations
1. Bar + line → profit, tax, commission जैसे derived values निकालना।
2. Table + pie → table total को base मानकर pie% से actual values निकालना।
3. Clustered bar + line → categories compare करना + trend पढ़ना।
4. Missing data → एक graph से totals और दूसरे से percentages लेकर missing value निकालना।
Trick to Always Use
- Step 1: दोनों displays से values अलग-अलग पढ़ें - mix न करें।
- Step 2: Percentage को हमेशा correct base पर apply करें।
- Step 3: Units (₹, lakhs, thousands) एक जैसे रखें।
Summary
Summary
- Absolute values (bars/tables) और rate values (line/pie) को अलग-अलग extract करें।
- Value = (percent × base) ÷ 100 का उपयोग करें।
- Calculate करने से पहले units standardize करें।
- Quick re-check से calculation errors avoid होते हैं।
