By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Overfitting vs Underfitting (Bias-Variance Tradeoff) is a fundamental concept in business analytics that deals with the tension between model complexity and accuracy. In simple terms, it's about finding the right balance between fitting the noise in the data and capturing the underlying patterns. Imagine you're trying to predict sales for a new product launch. If your model is too simple, it might not capture the nuances of the market, leading to underfitting. On the other hand, if your model is too complex, it might fit the noise in the data, leading to overfitting. The goal is to find the sweet spot where your model generalizes well to new, unseen data.
train_test_split
LinearRegression
train
lm
Data Analysis
Regression
Problem: Compute the moving average forecast for period 4 given data: 100, 110, 105, 108.
Answer: 107.5
Explanation: The moving average forecast is the average of the last few values in the data. In this case, the moving average forecast for period 4 is the average of the last 3 values: (110 + 105 + 108) / 3 = 107.5.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.