P CAIC 1 10-12 part 1 Flashcards

(18 cards)

1
Q

What is the purpose of the empty notebook in Chapter 9?

A

The empty notebook is used to explore data and build models.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the section next to 1 called in the notebook?

A

It is called a cell, where code is entered.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you run code in a cell?

A

You click on the button on the toolbar.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you add a new cell in the notebook?

A

You click on the + button on the toolbar.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What has the highest contribution to evaluation?

A

Memory has the highest contribution, followed by storage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What can OLS be used for?

A

OLS can estimate the importance of each product feature.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the purpose of the Python package mentioned in Chapter 10?

A

It is for data analysis and data manipulation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the library in Chapter 10 support?

A

It adds support for large, multi-dimensional arrays and matrices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the purpose of the Python package that complements scipy?

A

It provides functions for statistical computations and model estimation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What variables are included in the data from Chapter 11?

A

The data includes identifiers for sellers, items, and boolean variables for weekends and school breaks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What command is used to run a descriptive statistical analysis?

A

data.drop([‘ITEM_ID’], axis=1).describe()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does the command in Chapter 11 do?

A

It removes duplicates from the seller, item ID, and item name data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What can be observed from the pair plot in Chapter 11?

A

It shows the distribution of values and relationships between variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the Seaborn histogram plot analyze?

A

It explores the relationship between price and the CAT variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the purpose of the function in Chapter 11?

A

It packs model creation, determines price elasticity, and returns the model.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the code for burger_2752 do?

A

It isolates data for a specific item to analyze price versus demand.

17
Q

What is indicated by a negative price elasticity?

A

If the price goes up, fewer units will be sold.

18
Q

What is product recommendation?

A

It is a filtering system that anticipates and presents goods a user may be interested in buying.