Data Science Vocabulary

0.0(0)
Studied by 3 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:23 PM on 9/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

Data

Contextualized information

2
New cards

Data Science

Using data to solve problems

3
New cards

OSEMN “Awesome”

Obtain, Scrub, Explore, Model, iNterpret

4
New cards

Structured Data

Data which has some underlying organization (should be influential to the data)

5
New cards

Data Ethics

Moral principles

6
New cards

Numerical

Data that makes sense to have math applied

7
New cards

Categorical

Data that does not make sense to have math applied

8
New cards

Discrete

A type of numerical data WITH gaps

9
New cards

Continuous

A type of numerical data WITHOUT gaps

10
New cards

Nominal

A type of categorical data WITHOUT ordering (favorite color, names)

11
New cards

Ordinal

A type of categorical data WITH ordering (letter grades)

12
New cards

CSV

Comma separated values; a file format for storing tabular data

13
New cards

Descriptive questions

Regarding the description of past events

14
New cards

Predictive questions

Regarding the description of future or new events

15
New cards

Causal questions

Descriptions regarding potential future given and intervention

16
New cards

Correlation

When 2 variables are related with one another

17
New cards

Counterfactual

What is true under different circumstances

18
New cards

Observational studies

Studies that use data which was not designed for the study

19
New cards

Confounding factors

An unaccounted variable that affects both the treatment and control group

20
New cards

Randomized control trials

A type of experiment used to establish causality

21
New cards

Python modules

Organized collections of functions

22
New cards

Data type integer

A representation of integer data

23
New cards

Data type float

A representation of decimal data

24
New cards

Data type bool

A representation of true/false data

25
New cards

Data type string “str'“

A representation of text data

26
New cards

List

An ordered sequence of variables of any type of data

27
New cards

Dictionary

A way to represent multiple key-value pairs

28
New cards

Numpy array

Like a list but specifically for numbers and computation

29
New cards

Panda Series

A way to represent a 1D sequence of values used in pandas module

30
New cards

Pandas data frame

A way to represent a table of data used in pandas module

31
New cards

Functions

A block of code which does something

32
New cards

Variable scope

The portion of your data code which the variable name is valid

33
New cards

p th percentile

Smallest value that has at least p% of the data below it

34
New cards

Median

50th percentile; the middle value

35
New cards

Box plot

Uses percentiles to plot 1 numerical variable

36
New cards

Bar plot (for 1 variable)

Uses bars to plot categorical variables

37
New cards

Bar plot (for 2 variables)

Uses bars to plot categorical vs numerical

38
New cards

Histogram

Bins numerical data then makes a bar plot

39
New cards

Scatter plot

Uses points/dots to plot 2 numerical variables

40
New cards

Line plot

Plots 2 numerical variables with connected neighboring point