Шукаєте відповіді та рішення тестів для ADS1001 - Data challenges 1 - S1 2025? Перегляньте нашу велику колекцію перевірених відповідей для ADS1001 - Data challenges 1 - S1 2025 в learning.monash.edu.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
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.