logo

Crowdly

Browser

Add to Chrome

ADS1001 - Data challenges 1 - S1 2025

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?

0%
100%
0%
0%
View this question

What is the primary difference between linear and polynomial regression?

0%
0%
0%
0%
View this question
You fit a quadratic model to data that clearly follows a quartic (4th-degree polynomial) trend. The model performs poorly on both training and test sets.

What issue is the model most likely suffering from?
0%
0%
0%
0%
View this question

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?

View this question

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?

View this question

Why is it important to separate your dataset into a training set and a test set before fitting a linear regression model?

View this question

Which of the following equations best represents linear regression line in the picture: 

Image failed to load

View this question

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)

0%
0%
100%
0%
View this question

Which of the following best describes the difference between pd.merge() and pd.concat() in pandas?

0%
0%
0%
100%
View this question
True or False:

If no arguments like 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.

0%
0%
View this question

Want instant access to all verified answers on learning.monash.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome