Looking for ADS1001 - Data challenges 1 - S1 2025 test answers and solutions? Browse our comprehensive collection of verified answers for ADS1001 - Data challenges 1 - S1 2025 at learning.monash.edu.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
What is a common risk when increasing the degree of a polynomial regression model?
What is the primary difference between linear and polynomial regression?
You have a categorical variable "color" with three possible values: "red", "blue", and "green". After applying one-hot encoding without dropping any categories, how many columns will be created?
You are fitting a linear regression model to predict house price based on house internal size (in square meters). The model learns the following equation:price = 50 000 + 3000 × size
What does the coefficient 3000 represent?
Why is it important to separate your dataset into a training set and a test set before fitting a linear regression model?
Which of the following equations best represents linear regression line in the picture:
What is the output of the following code?
import pandas as pd
df1 = pd.DataFrame({ 'A': [1, 2], 'B': ['x', 'y'] })
df2 = pd.DataFrame({ 'A': [3, 4], 'B': ['z', 'w'] })
result = pd.concat([df1, df2], ignore_index=True)
print(result)
Which of the following best describes the difference between pd.merge() and pd.concat() in pandas?
on=, left_on=, or left_index=True are provided, pd.merge() requires at least one column name to be shared by both DataFrames to perform a merge.