Theory
Syntax
Riddles
100

What is linear regression?

predicts the value of unknown data by using a data set

100

How do you display the dataset in a table?

dataframe.head()

100

To find me, you may need to iterate again and again, until the right condition breaks the chain. What am I?

A loop

200
Why is plotting your data useful before using the algorithms?

helps you visualize what type of data you are dealing with

200

what function is used to split data into testing and training?

train_test_split

200

I am not a librarian, but without me, your code might just ramble; I offer you resources, so your projects you can better assemble. What am I?

Library

300

what are 2 ways to ensure your dataset is more accurate?

Possible answers:

- have a large sum of data

- data is up-to-date

- no missing values

- normalize your inputs

300

find the error:

model.fit(x_test, y_test)

model.fit(x_train, y_train)

300

I am a series of steps designed to solve problems or perform tasks. Computers follow me to the letter. What am I?

Algorithm

400

when do you use encoding?

to transform data that are words into numerical values

400

what datatype is "hello world"

string

400

Using only two digits, I’m as simple as can be, I’m the base of all bases in computing, you see. What am I?

Binary