M6S1 Flashcards

1
Q

Process of converting raw data into a usable form

A

Data Wrangling

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

Also called as data mugging or data remediation.

A

Data Wrangling

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

Data Wrangling Steps

A
  • Discovery
  • Transformation
  • Validation
  • Publishing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Data examination for next step

A

Discovery

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

Data structuring, normalization, & denormalization, data cleaning, data enriching

A

Transformation

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

verifying data consistency, sufficient quality, and secure

A

Validation

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

Preferred format for sharing with teammates.

A

Publishing

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

Library that provides several functions for loading dataset.

A

Pandas

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

Data structure that holds input datasets

A

DataFrame

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

Comma-Separated Values (CSV)

A
  • Tabular Format
  • Very lightweight
  • May not be easy to read visually
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

CSV to DataFrame

A

pandas.read_csv(filename.csv)

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

What reads the text file into chunks?

A

pandas.io.parsers.TextFileReader

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

Load and read Excel file

A
  • pandas.io.excel._base.ExcelFile
  • pandas.ExcelFile(‘<Excel>')</Excel>
  • pandas.read_excel(<ExcelFile>, '<sheet>')</sheet></ExcelFile>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Directly Read Excel File

A
  • pandas.read_excel(‘<Excel>', '<sheet>')</sheet></Excel>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly