Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Examples vs. Exercises - Learning Guide</title> | |
| <style> | |
| :root { | |
| --example-color: #27ae60; | |
| --exercise-color: #e67e22; | |
| --primary-color: #2c3e50; | |
| --secondary-color: #3498db; | |
| --background-color: #f9f9f9; | |
| --text-color: #333; | |
| --border-color: #ddd; | |
| } | |
| * { | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| line-height: 1.7; | |
| color: var(--text-color); | |
| max-width: 900px; | |
| margin: 0 auto; | |
| padding: 20px 40px; | |
| background-color: var(--background-color); | |
| } | |
| h1 { | |
| color: var(--primary-color); | |
| border-bottom: 3px solid var(--secondary-color); | |
| padding-bottom: 15px; | |
| margin-top: 40px; | |
| } | |
| h2 { | |
| color: var(--primary-color); | |
| border-bottom: 2px solid var(--border-color); | |
| padding-bottom: 10px; | |
| margin-top: 50px; | |
| } | |
| h3 { | |
| color: var(--secondary-color); | |
| margin-top: 30px; | |
| } | |
| .header-section { | |
| text-align: center; | |
| padding: 40px 0; | |
| border-bottom: 2px solid var(--border-color); | |
| margin-bottom: 40px; | |
| } | |
| .header-section h1 { | |
| border: none; | |
| margin: 0; | |
| font-size: 2.5em; | |
| } | |
| .subtitle { | |
| color: #666; | |
| font-size: 1.3em; | |
| margin-top: 10px; | |
| } | |
| .overview-box { | |
| background: white; | |
| border-radius: 10px; | |
| padding: 25px; | |
| margin: 30px 0; | |
| box-shadow: 0 2px 8px rgba(0,0,0,0.1); | |
| } | |
| .two-modes { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 20px; | |
| margin: 30px 0; | |
| } | |
| .mode-card { | |
| background: white; | |
| border-radius: 10px; | |
| padding: 25px; | |
| box-shadow: 0 2px 8px rgba(0,0,0,0.1); | |
| } | |
| .mode-card.example { | |
| border-top: 5px solid var(--example-color); | |
| } | |
| .mode-card.exercise { | |
| border-top: 5px solid var(--exercise-color); | |
| } | |
| .mode-card h3 { | |
| margin-top: 0; | |
| } | |
| .mode-card.example h3 { | |
| color: var(--example-color); | |
| } | |
| .mode-card.exercise h3 { | |
| color: var(--exercise-color); | |
| } | |
| .mode-number { | |
| display: inline-block; | |
| width: 30px; | |
| height: 30px; | |
| border-radius: 50%; | |
| text-align: center; | |
| line-height: 30px; | |
| color: white; | |
| font-weight: bold; | |
| margin-right: 10px; | |
| } | |
| .example .mode-number { | |
| background-color: var(--example-color); | |
| } | |
| .exercise .mode-number { | |
| background-color: var(--exercise-color); | |
| } | |
| table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| margin: 20px 0; | |
| background: white; | |
| box-shadow: 0 1px 3px rgba(0,0,0,0.1); | |
| } | |
| th, td { | |
| padding: 12px 15px; | |
| text-align: left; | |
| border: 1px solid var(--border-color); | |
| } | |
| th { | |
| background-color: var(--primary-color); | |
| color: white; | |
| font-weight: 600; | |
| } | |
| tr:nth-child(even) { | |
| background-color: #f8f9fa; | |
| } | |
| .conversation-box { | |
| background: #f8f9fa; | |
| border-radius: 10px; | |
| padding: 20px; | |
| margin: 20px 0; | |
| } | |
| .user-message { | |
| background: #e3f2fd; | |
| border-left: 4px solid var(--secondary-color); | |
| padding: 15px; | |
| margin: 10px 0; | |
| border-radius: 0 8px 8px 0; | |
| } | |
| .companion-message { | |
| background: white; | |
| border-left: 4px solid var(--example-color); | |
| padding: 15px; | |
| margin: 10px 0; | |
| border-radius: 0 8px 8px 0; | |
| } | |
| .companion-message.exercise-response { | |
| border-left-color: var(--exercise-color); | |
| } | |
| .message-label { | |
| font-weight: bold; | |
| font-size: 0.85em; | |
| color: #666; | |
| margin-bottom: 8px; | |
| } | |
| .key-features { | |
| background: #fff3cd; | |
| padding: 15px; | |
| border-radius: 5px; | |
| margin-top: 15px; | |
| } | |
| .key-features strong { | |
| display: block; | |
| margin-bottom: 8px; | |
| } | |
| blockquote { | |
| border-left: 4px solid var(--secondary-color); | |
| margin: 25px 0; | |
| padding: 15px 25px; | |
| background-color: #f0f7fb; | |
| font-style: italic; | |
| } | |
| .workflow-container { | |
| margin: 30px 0; | |
| } | |
| .workflow-step { | |
| background: white; | |
| border: 2px solid var(--border-color); | |
| border-radius: 10px; | |
| padding: 20px; | |
| margin: 15px 0; | |
| position: relative; | |
| } | |
| .workflow-step::after { | |
| content: "↓"; | |
| position: absolute; | |
| bottom: -25px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| font-size: 1.5em; | |
| color: var(--secondary-color); | |
| } | |
| .workflow-step:last-child::after { | |
| display: none; | |
| } | |
| .workflow-step h4 { | |
| margin: 0 0 10px 0; | |
| color: var(--primary-color); | |
| } | |
| .step-number { | |
| display: inline-block; | |
| background: var(--secondary-color); | |
| color: white; | |
| width: 28px; | |
| height: 28px; | |
| border-radius: 50%; | |
| text-align: center; | |
| line-height: 28px; | |
| font-weight: bold; | |
| margin-right: 10px; | |
| } | |
| .comparison-table th:first-child { | |
| width: 25%; | |
| } | |
| .example-col { | |
| background-color: #e8f5e9 ; | |
| } | |
| .exercise-col { | |
| background-color: #fff3e0 ; | |
| } | |
| .faq-item { | |
| background: white; | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| padding: 20px; | |
| margin: 15px 0; | |
| } | |
| .faq-item h4 { | |
| color: var(--secondary-color); | |
| margin-top: 0; | |
| margin-bottom: 10px; | |
| } | |
| .summary-table th:nth-child(2) { | |
| background-color: var(--example-color); | |
| } | |
| .summary-table th:nth-child(3) { | |
| background-color: var(--exercise-color); | |
| } | |
| .final-thought { | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| color: white; | |
| padding: 30px; | |
| border-radius: 10px; | |
| margin: 40px 0; | |
| text-align: center; | |
| } | |
| .final-thought blockquote { | |
| background: rgba(255,255,255,0.1); | |
| border-left-color: white; | |
| color: white; | |
| text-align: left; | |
| } | |
| hr { | |
| border: none; | |
| border-top: 1px solid var(--border-color); | |
| margin: 40px 0; | |
| } | |
| footer { | |
| text-align: center; | |
| padding: 30px; | |
| color: #666; | |
| border-top: 1px solid var(--border-color); | |
| margin-top: 50px; | |
| } | |
| ul, ol { | |
| margin: 15px 0; | |
| padding-left: 25px; | |
| } | |
| li { | |
| margin: 8px 0; | |
| } | |
| .trap-info { | |
| background: #ffebee; | |
| border-left: 4px solid #e74c3c; | |
| padding: 15px 20px; | |
| margin: 20px 0; | |
| border-radius: 0 8px 8px 0; | |
| } | |
| @media (max-width: 768px) { | |
| body { | |
| padding: 15px 20px; | |
| } | |
| .two-modes { | |
| grid-template-columns: 1fr; | |
| } | |
| table { | |
| font-size: 0.9em; | |
| } | |
| th, td { | |
| padding: 8px 10px; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="header-section"> | |
| <h1>Examples vs. Exercises</h1> | |
| <p class="subtitle">A Guide to the Two Learning Modes</p> | |
| </div> | |
| <h2>Overview</h2> | |
| <div class="overview-box"> | |
| <p>Each analytics chapter in <em>Analytics for Managers</em> includes two complementary learning experiences:</p> | |
| <div class="two-modes"> | |
| <div class="mode-card example"> | |
| <h3><span class="mode-number">1</span> Example</h3> | |
| <p>A guided walkthrough where you learn <strong>with</strong> the companion</p> | |
| </div> | |
| <div class="mode-card exercise"> | |
| <h3><span class="mode-number">2</span> Exercise</h3> | |
| <p>Independent practice where you <strong>apply</strong> what you learned</p> | |
| </div> | |
| </div> | |
| <p>These aren't just "easy" and "hard" versions of the same thing. They serve fundamentally different pedagogical purposes and the companion behaves differently in each mode.</p> | |
| </div> | |
| <hr> | |
| <h2>The Example: Learning With Guidance</h2> | |
| <h3>Purpose</h3> | |
| <p>The Example is your <strong>learning experience</strong>. It's where you see disciplined analytical thinking modeled for you. The companion acts as an experienced mentor walking you through the reasoning process step by step.</p> | |
| <h3>When to Use</h3> | |
| <ul> | |
| <li><strong>First time</strong> through a chapter</li> | |
| <li>When you're learning a <strong>new analytical technique</strong> (regression, classification, or clustering)</li> | |
| <li>When you want to understand <strong>how</strong> to think through each stage</li> | |
| <li>When you need to see <strong>what good reasoning looks like</strong></li> | |
| </ul> | |
| <h3>What to Expect from the Companion</h3> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Companion Behavior</th> | |
| <th>Why</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td><strong>Explains concepts thoroughly</strong></td> | |
| <td>You're learning the reasoning process</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Provides detailed guidance</strong></td> | |
| <td>Shows you what to consider at each stage</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Models good reasoning explicitly</strong></td> | |
| <td>Demonstrates the "gold standard" thinking</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Points out potential pitfalls</strong></td> | |
| <td>Teaches you what to watch for</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Gives more information upfront</strong></td> | |
| <td>Reduces cognitive load while learning</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <h3>Your Role in Example Mode</h3> | |
| <ul> | |
| <li><strong>Follow along</strong> with the companion's guidance</li> | |
| <li><strong>Ask questions</strong> when something isn't clear</li> | |
| <li><strong>Observe</strong> how the companion frames interpretations</li> | |
| <li><strong>Notice</strong> the language used (tentative, conditional, cautious)</li> | |
| <li><strong>Absorb</strong> the reasoning patterns you'll need for the exercise</li> | |
| </ul> | |
| <h3>Example of Companion Behavior (Example Mode)</h3> | |
| <div class="conversation-box"> | |
| <div class="user-message"> | |
| <div class="message-label">You say:</div> | |
| "The coefficient for RM is 4.3." | |
| </div> | |
| <div class="companion-message"> | |
| <div class="message-label">Companion responds:</div> | |
| <p>"That's right. Let's interpret this carefully. This coefficient suggests that, among otherwise similar properties in this dataset, each additional room is associated with approximately $4,300 higher median value, on average.</p> | |
| <p>Notice I said 'associated with' — not 'causes.' This is observational data, so we're describing a pattern, not a causal mechanism.</p> | |
| <p>Also notice I said 'on average' — this is a summary across all properties. The relationship might be stronger or weaker in different neighborhoods or price ranges.</p> | |
| <p>What other factors might influence both the number of rooms and the property value that we should keep in mind?"</p> | |
| </div> | |
| <div class="key-features"> | |
| <strong>Key features:</strong> | |
| <ul style="margin: 0;"> | |
| <li>Explains the interpretation thoroughly</li> | |
| <li>Models the correct language</li> | |
| <li>Points out the caveats explicitly</li> | |
| <li>Ends with a reflective question</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <hr> | |
| <h2>The Exercise: Applying What You Learned</h2> | |
| <h3>Purpose</h3> | |
| <p>The Exercise is your <strong>practice experience</strong>. It's where you demonstrate that you've internalized the reasoning process. The companion steps back and lets you drive, intervening only when you show signs of weak reasoning.</p> | |
| <h3>When to Use</h3> | |
| <ul> | |
| <li><strong>After completing</strong> the chapter Example</li> | |
| <li>When you want to <strong>test your understanding</strong></li> | |
| <li>When you're ready to <strong>think independently</strong></li> | |
| <li>When you want to <strong>build confidence</strong> in your own judgment</li> | |
| </ul> | |
| <h3>What to Expect from the Companion</h3> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Companion Behavior</th> | |
| <th>Why</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td><strong>Asks probing questions</strong></td> | |
| <td>Tests whether you've internalized the reasoning</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Provides minimal guidance</strong></td> | |
| <td>Forces you to think independently</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Challenges weak reasoning</strong></td> | |
| <td>Helps you catch your own mistakes</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Doesn't give answers directly</strong></td> | |
| <td>Builds your judgment, not dependency</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Uses Socratic method</strong></td> | |
| <td>Questions lead you to discover insights yourself</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <h3>Your Role in Exercise Mode</h3> | |
| <ul> | |
| <li><strong>Drive the analysis</strong> — you lead, the companion follows</li> | |
| <li><strong>Articulate your reasoning</strong> — explain <em>why</em> you think what you think</li> | |
| <li><strong>Expect to be challenged</strong> — pushback means you're learning</li> | |
| <li><strong>Embrace uncertainty</strong> — saying "I'm not sure" is acceptable</li> | |
| <li><strong>Self-correct</strong> — when challenged, reconsider your reasoning</li> | |
| </ul> | |
| <h3>Example of Companion Behavior (Exercise Mode)</h3> | |
| <div class="conversation-box"> | |
| <div class="user-message"> | |
| <div class="message-label">You say:</div> | |
| "The coefficient for RM is 4.8, so adding rooms increases property value by $4,800." | |
| </div> | |
| <div class="companion-message exercise-response"> | |
| <div class="message-label">Companion responds:</div> | |
| <p>"That interpretation treats the coefficient as a direct lever. What assumptions would need to hold for that conclusion to be reliable in practice?"</p> | |
| </div> | |
| <div class="key-features"> | |
| <strong>Key features:</strong> | |
| <ul style="margin: 0;"> | |
| <li>Does NOT explain what's wrong</li> | |
| <li>Does NOT provide the correct interpretation</li> | |
| <li>Asks a question that prompts reflection</li> | |
| <li>Lets you discover the issue yourself</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <h3>What If You Get Stuck?</h3> | |
| <p>If you're genuinely stuck in Exercise Mode, you can:</p> | |
| <ol> | |
| <li><strong>Ask for a hint:</strong> "Can you give me a hint about what I might be missing?"</li> | |
| <li><strong>Request clarification:</strong> "I'm not sure what you mean by that question."</li> | |
| <li><strong>Revisit the Example:</strong> Go back to Example Mode to refresh your understanding</li> | |
| </ol> | |
| <p>The companion won't abandon you, but it will make you work for insights rather than handing them over.</p> | |
| <hr> | |
| <h2>Side-by-Side Comparison</h2> | |
| <table class="comparison-table"> | |
| <thead> | |
| <tr> | |
| <th>Aspect</th> | |
| <th class="example-col">Example Mode</th> | |
| <th class="exercise-col">Exercise Mode</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td><strong>Primary goal</strong></td> | |
| <td class="example-col">Learn the reasoning process</td> | |
| <td class="exercise-col">Apply the reasoning process</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Companion's role</strong></td> | |
| <td class="example-col">Teacher/mentor</td> | |
| <td class="exercise-col">Socratic questioner</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Guidance level</strong></td> | |
| <td class="example-col">High — detailed explanations</td> | |
| <td class="exercise-col">Low — probing questions</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Who leads</strong></td> | |
| <td class="example-col">The companion guides you</td> | |
| <td class="exercise-col">You drive, companion follows</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Feedback style</strong></td> | |
| <td class="example-col">Explicit teaching</td> | |
| <td class="exercise-col">Challenges and redirects</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Mistakes</strong></td> | |
| <td class="example-col">Prevented through guidance</td> | |
| <td class="exercise-col">Allowed, then examined</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Cognitive load</strong></td> | |
| <td class="example-col">Lower (companion does heavy lifting)</td> | |
| <td class="exercise-col">Higher (you do the thinking)</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Best for</strong></td> | |
| <td class="example-col">First exposure to concepts</td> | |
| <td class="exercise-col">Building independent judgment</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <hr> | |
| <h2>The Pedagogical Logic</h2> | |
| <h3>Why Two Modes?</h3> | |
| <p>Learning analytical reasoning is like learning to drive:</p> | |
| <ol> | |
| <li><strong>First, you watch and learn</strong> — An instructor explains what to do, demonstrates proper technique, and walks you through each step. This is the <strong>Example</strong>.</li> | |
| <li><strong>Then, you practice with supervision</strong> — You take the wheel while the instructor watches, intervening only when you're about to make a serious error. This is the <strong>Exercise</strong>.</li> | |
| </ol> | |
| <p>You can't skip step 1 and expect step 2 to go well. And you can't stay in step 1 forever — eventually, you need to drive yourself.</p> | |
| <h3>Why the Exercise Datasets Have "Traps"</h3> | |
| <div class="trap-info"> | |
| <p>The Exercise datasets are deliberately designed with embedded analytical challenges — patterns that tempt common reasoning errors:</p> | |
| <ul> | |
| <li><strong>Regression:</strong> Coefficients that look like causal levers but reflect omitted variables or outliers</li> | |
| <li><strong>Classification:</strong> High accuracy that masks poor performance on the minority class</li> | |
| <li><strong>Clustering:</strong> Segments that feel "real" but are artifacts of feature scaling</li> | |
| </ul> | |
| </div> | |
| <p>These aren't tricks to make you fail. They're realistic representations of what happens with real business data. The traps exist so you can:</p> | |
| <ol> | |
| <li><strong>Experience</strong> the temptation to over-interpret</li> | |
| <li><strong>Practice</strong> catching yourself before acting on weak conclusions</li> | |
| <li><strong>Build</strong> the habit of skeptical, disciplined reasoning</li> | |
| </ol> | |
| <p>If you fall into a trap in the Exercise, the companion will help you recognize it — but through questions, not lectures.</p> | |
| <hr> | |
| <h2>Recommended Workflow</h2> | |
| <div class="workflow-container"> | |
| <div class="workflow-step"> | |
| <h4><span class="step-number">1</span> Read the Chapter</h4> | |
| <p>Understand the concepts, techniques, and interpretation principles before engaging with the companion.</p> | |
| </div> | |
| <div class="workflow-step"> | |
| <h4><span class="step-number">2</span> Work Through the Example</h4> | |
| <p>Use Example Mode with the companion. Let it guide you. Focus on HOW the reasoning unfolds, not just the results.</p> | |
| </div> | |
| <div class="workflow-step"> | |
| <h4><span class="step-number">3</span> Reflect on the Example</h4> | |
| <p>Before starting the Exercise, ask yourself:</p> | |
| <ul> | |
| <li>What was the key insight at each stage?</li> | |
| <li>What language did the companion use to stay cautious?</li> | |
| <li>What traps did the companion warn me about?</li> | |
| </ul> | |
| </div> | |
| <div class="workflow-step"> | |
| <h4><span class="step-number">4</span> Complete the Exercise</h4> | |
| <p>Use Exercise Mode. Drive the analysis yourself. Expect to be challenged. Embrace the struggle.</p> | |
| </div> | |
| <div class="workflow-step"> | |
| <h4><span class="step-number">5</span> Reflect on the Exercise</h4> | |
| <p>After completing the Exercise, ask yourself:</p> | |
| <ul> | |
| <li>Where did I get challenged? Why?</li> | |
| <li>What reasoning mistakes did I almost make?</li> | |
| <li>What would I do differently next time?</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <hr> | |
| <h2>Common Questions</h2> | |
| <div class="faq-item"> | |
| <h4>Q: Can I do the Exercise without doing the Example first?</h4> | |
| <p><strong>A:</strong> You can, but it's not recommended. The Example teaches you the reasoning process. Without it, you're likely to struggle with the Exercise and may develop bad habits that the Example would have prevented.</p> | |
| </div> | |
| <div class="faq-item"> | |
| <h4>Q: What if the Exercise feels too hard?</h4> | |
| <p><strong>A:</strong> That's normal — it's supposed to be challenging. If you're genuinely stuck:</p> | |
| <ol> | |
| <li>Ask the companion for a hint</li> | |
| <li>Return to the Example to refresh your understanding</li> | |
| <li>Re-read the relevant chapter section</li> | |
| </ol> | |
| <p>Struggling is part of learning. The goal isn't to get through quickly; it's to develop judgment.</p> | |
| </div> | |
| <div class="faq-item"> | |
| <h4>Q: What if I disagree with the companion's challenge?</h4> | |
| <p><strong>A:</strong> Defend your position! Articulate why you think your reasoning is sound. If you can make a strong argument, you might be right. The companion challenges you to think harder, not to make you accept a predetermined answer.</p> | |
| </div> | |
| <div class="faq-item"> | |
| <h4>Q: How do I know if I've "passed" the Exercise?</h4> | |
| <p><strong>A:</strong> There's no pass/fail. You've successfully completed the Exercise when you can:</p> | |
| <ul> | |
| <li>Summarize findings in conditional, cautious language</li> | |
| <li>Articulate the key limitations and uncertainties</li> | |
| <li>Identify what additional evidence would increase confidence</li> | |
| <li>Resist the urge to propose mechanical actions</li> | |
| </ul> | |
| <p>The companion will ask you to do this at Stage 7.</p> | |
| </div> | |
| <div class="faq-item"> | |
| <h4>Q: Can I redo an Exercise?</h4> | |
| <p><strong>A:</strong> Absolutely. In fact, redoing an Exercise after some time has passed is excellent practice. You may notice things you missed the first time or find that your reasoning has improved.</p> | |
| </div> | |
| <hr> | |
| <h2>Summary</h2> | |
| <table class="summary-table"> | |
| <thead> | |
| <tr> | |
| <th></th> | |
| <th>Example</th> | |
| <th>Exercise</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td><strong>Metaphor</strong></td> | |
| <td>Training wheels on</td> | |
| <td>Training wheels off</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Companion acts as</strong></td> | |
| <td>Instructor demonstrating</td> | |
| <td>Coach observing</td> | |
| </tr> | |
| <tr> | |
| <td><strong>You should</strong></td> | |
| <td>Watch, learn, absorb</td> | |
| <td>Lead, apply, demonstrate</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Expect to feel</strong></td> | |
| <td>Guided and supported</td> | |
| <td>Challenged and stretched</td> | |
| </tr> | |
| <tr> | |
| <td><strong>Success means</strong></td> | |
| <td>Understanding the process</td> | |
| <td>Applying it independently</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <hr> | |
| <div class="final-thought"> | |
| <blockquote> | |
| <p>The Example teaches you <em>what</em> disciplined reasoning looks like.<br> | |
| The Exercise teaches you <em>that you can do it yourself</em>.</p> | |
| </blockquote> | |
| <p>Both are essential. The Example without the Exercise creates dependency. The Exercise without the Example creates frustration. Together, they build genuine analytical judgment — the kind that transfers to every dataset you'll ever encounter.</p> | |
| </div> | |
| <footer> | |
| <p><em>Analytics for Managers — Building Analytical Judgment</em></p> | |
| </footer> | |
| </body> | |
| </html> | |