PeopleCert Data Science Foundation Vocabulary Flashcards

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

1/46

flashcard set

Earn XP

Description and Tags

A comprehensive vocabulary flashcard set covering key definitions, concepts, software tools, analytics types, measurement scales, and programming fundamentals from the PeopleCert Data Science Foundation Study Guide.

Last updated 10:11 AM on 9/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

47 Terms

1
New cards
<p>Data Science</p>

Data Science

A field that combines the scientific method, math and statistics, specialized programming, advanced analytics, AI, and storytelling to uncover and explain business insights buried in data.

<p>A <span style="color: rgb(157, 43, 43);">field</span> that combines the <span style="color: yellow;"><strong>scientific method, math and statistics, specialized programming, advanced analytics, AI, and storytelling to uncover and explain business insights buried in data.</strong></span></p>
2
New cards
<p><span style="color: purple;"><strong>Big Data</strong></span></p>

Big Data

The 21st-century phenomenon of exponential growth of business data, and the challenges that come with it, including holistic collection, storage, management, and analysis of all data owned or used by a business.

<p>The <span style="color: red;">21st-century phenomenon</span> of exponential growth of business data, and the challenges that come with it, including <span style="color: yellow;">holistic collection, storage, management, and analysis of all data owned or used by a business.</span></p>
3
New cards

Volume (Big Data)

Refers to the size of the data sets that need to be analysed and processed.

4
New cards

Velocity (Big Data)

Refers to the speed with which data is generated.

5
New cards

Variety (Big Data)

Refers to data coming from a great variety of sources, generally existing as structured, semi-structured, or unstructured data.

6
New cards

Veracity (Big Data)

Refers to the quality and trustworthiness of the data that is being analysed.

7
New cards

Value (Big Data)

Refers to the value of the insights gained from turning bulk data into something useful.

8
New cards

Online Transaction Processing (OLTP)

A system that captures, stores, and processes data from transactions in real time within operational applications.

9
New cards

Online Analytical Processing (OLAP)

A system that uses complex queries to analyse aggregated historical data from OLTP systems, such as a Data Warehouse.

10
New cards

Extract, Transform, Load (ETL)

The process through which data from one or more OLTP databases is ingested into OLAP systems.

11
New cards

Data Analytics

A discipline focused on extracting insights from data, comprising the processes, tools, and techniques of data analysis and management.

12
New cards

Descriptive Analytics

Analytics that uses historical and current data from multiple sources to describe the present state by identifying trends and patterns, answering 'What has happened and what is happening right now?'.

13
New cards

Diagnostic Analytics

Analytics that uses data to discover the factors or reasons for past performance, answering 'Why is it happening?'.

14
New cards

Predictive Analytics

Advanced analytics that applies statistical modelling, forecasting, and machine learning to predict future outcomes, answering 'What is likely to happen in the future?'.

15
New cards

Prescriptive Analytics

Advanced analytics that involves testing, algorithms, and business rules to recommend specific solutions that will deliver desired outcomes, answering 'What do we need to do?'.

16
New cards
<p>CRISP-DM</p>

CRISP-DM

Cross-Industry Standard Process for Data Mining; a systematic 6-phase iterative cycle consisting of Business understanding, Data understanding, Data preparation, Modelling, Evaluation, and Deployment.

17
New cards

Nominal Scale

A categorical measurement scale used to label variables that have no quantitative values.

18
New cards

Ordinal Scale

A categorical measurement scale used to label variables that have naturally occurring orders, but no quantifiable difference between values.

19
New cards

Interval Scale

A numerical measurement scale used to label variables that have a natural order and quantifiable difference between values, but no 'true zero' value.

20
New cards

Ratio Scale

A numerical measurement scale used to label variables that have a natural order, a quantifiable difference between values, and a 'true zero' value.

21
New cards

Quantitative Data

Numerical data that is countable or measurable, objective, and used to confirm or test hypotheses.

22
New cards

Qualitative Data

Descriptive data relating to words and language that can be observed but not measured, providing rich, in-depth context to understand concepts, thoughts, and experiences.

23
New cards

Data Lake

A central repository where data is stored in its raw, scalable form before structure is applied.

24
New cards

Data Swamp

An unmanaged, ungoverned data lake containing messy access, broken ingestion, and data of no value.

25
New cards

SAS (Statistical Analysis System)

A closed-source proprietary statistical software suite developed by SAS Institute specifically designed for statistical operations and modeling.

26
New cards

Apache Spark

A distributed computing tool developed by Apache Software Foundation designed to handle batch and stream processing with fast in-memory execution.

27
New cards

D3.js

A JavaScript client-side scripting library that allows the creation of interactive, animated data visualizations on web browsers.

28
New cards

MATLAB

A closed-source multi-paradigm numerical computing environment used for processing mathematical information and simulating neural networks and fuzzy logic.

29
New cards

Matplotlib

A popular plotting and visualization library developed for Python, using modules like Pyplot to plot complex graphs.

30
New cards

ggplot2

An advanced data visualization package in R (part of tidyverse) used for creating customized visualizations, annotating data, and generating maps.

31
New cards

TensorFlow

A free open-source toolkit developed by Google Brain team for building, training, and deploying machine learning and deep learning models.

32
New cards

R Language

A programming language developed by academics and statisticians specifically designed for statistical analysis and visualization.

33
New cards

RStudio

A customizable desktop integrated development environment (IDE) for R, developed in 2011, providing tools like consoles, syntax highlighting, and R Markdown editors.

34
New cards

Python

An interpreted, high-level, general-purpose programming language released in 1991 by Guido van Rossum that emphasizes code readability.

35
New cards

Jupyter Notebooks

An open-source web-application tool based on IPython developed in February 2015 for writing live code, statistical computations, visualizations, and presentations.

36
New cards

Computer Software

That part of a computer system consisting of encoded information or computer instructions, including computer programs, libraries, and related data.

37
New cards

Computer Program

A collection of instructions that performs a specific task when executed by a computer's central processing unit.

38
New cards

GPU (Graphics Processing Unit) Technology

Hardware technology that streamlines processes via parallel processing, allowing fast compute times for machine learning, image processing, and real-time language tasks.

39
New cards

Algorithm

A procedure, formula, or self-contained step-by-step set of operations for solving a problem or executing specified actions.

40
New cards

Machine Language

The native programming language of a computer, consisting of binary (1s and 0s) or hexadecimal instructions executed directly by the CPU.

41
New cards

Compiled Language

A language whose code is translated directly into machine code via a manual build step before execution by the processor.

42
New cards

Interpreted Language

A language where source code is read and executed line by line at runtime by an interpreter program rather than being directly translated ahead of time.

43
New cards

Variables (Python)

Reserved memory locations to store values, whose type and memory allocation occur automatically upon value assignment.

44
New cards

Conditional Statement

A decision-making statement that evaluates an expression as True or False to determine which action or block of code to execute.

45
New cards

Loop Statement

A control structure that allows a statement or group of statements to be executed multiple times.

46
New cards

range() Function

A Python built-in function that provides a sequence of numbers based on specified start, stop, and step arguments.

47
New cards

User-Defined Functions

Custom functions created by a programmer in Python using the 'def' keyword to perform a single, related action.