%%{init: {
"flowchart": { "nodeSpacing": 300, "rankSpacing": 300 },
"themeVariables": {
"fontSize": "50px", /* <-- bump this up as needed */
"fontFamily": "Arial"
},
"width": 1200,
"height": 900
}}%%
graph TD
A["Measures of Central Tendency"]
A --> B["Mean (Average)"]
A --> C["Median (Middle Value)"]
A --> D["Mode (Most Frequent)"]
B --> B1["Sum of all values ÷<br/>Number of values"]
B --> B2["Best for:<br/>Symmetric distributions"]
B --> B3["Affected by:<br/>Outliers"]
C --> C1["Middle value when<br/>data is ordered"]
C --> C2["Best for:<br/>Skewed distributions"]
C --> C3["Resistant to:<br/>Outliers"]
D --> D1["Value that appears<br/>most frequently"]
D --> D2["Best for:<br/>Categorical data"]
D --> D3["Can have: Multiple modes<br/>or no mode"]
classDef main fill:#e3f2fd,stroke:#0d47a1,stroke-width:4px
classDef mean fill:#fff3e0,stroke:#e65100,stroke-width:4px
classDef median fill:#e8f5e8,stroke:#2e7d32,stroke-width:4px
classDef mode fill:#f3e5f5,stroke:#7b1fa2,stroke-width:4px
classDef details fill:#fafafa,stroke:#616161,stroke-width:4px
class A main
class B mean
class C median
class D mode
class B1,B2,B3,C1,C2,C3,D1,D2,D3 details