Spaces:
Running
Running
File size: 26,466 Bytes
5585962 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 | <!DOCTYPE html>
<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 !important;
}
.exercise-col {
background-color: #fff3e0 !important;
}
.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>
|