Data Analysis and Database Fundamentals

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/60

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers essential terminologies in data analysis, big data characteristics, specific software tools like Excel and Tableau, Python libraries for data science, and fundamental relational database concepts including SQL joins.

Last updated 3:09 AM on 7/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

61 Terms

1
New cards

Data

Information in its raw form, such as numbers, text, images, or videos, that is collected, stored, and processed for analysis.

2
New cards

Structured Data

Data that follows a predefined format, such as database tables and data stored in tables in Excel files.

3
New cards

Unstructured Data

Data that doesn't follow a predefined format, such as server log files and emails.

4
New cards

Big Data

Extremely large and complex datasets that require specialized tools and techniques for storage, processing, and analysis, often characterized by the "33" Vs: volume, velocity, and variety.

5
New cards

Database

An organized collection of data, typically stored and accessed electronically from a computer system, structured to allow efficient storage, retrieval, and management of information.

6
New cards

Data Dictionary

A documentation that provides a comprehensive description of the data elements, including their definitions, data types, formats, and relationships, used in a database or a data system.

7
New cards

Data Warehouse

A central repository that stores large amounts of data from different sources, typically used for data analysis, reporting, and decision-making purposes.

8
New cards

ETL (Extract, Transform, Load)

The process of extracting data from multiple sources, transforming it into a consistent format, and loading it into a data warehouse or another data repository for analysis.

9
New cards

Data Governance

The framework, policies, and procedures that ensure the quality, consistency, integrity, and security of data across an organization, including data standards, data management practices, and data security protocols.

10
New cards

Data Privacy

The protection of personal or sensitive information from unauthorized access, use, or disclosure, in compliance with relevant laws, regulations, and organizational policies.

11
New cards

Analysis

The process of examining, evaluating, and interpreting data to derive insights, identify patterns, and make informed decisions.

12
New cards

Descriptive Analysis

Also called Descriptive Statistics, this analysis focuses on describing and summarizing data through statistical measures such as mean, median, mode, standard deviation, and visualizations like charts and graphs.

13
New cards

Inferential Analysis

Also called Inferential Statistics, this analysis involves making predictions and drawing conclusions from data based on statistical techniques, such as hypothesis testing, regression analysis, and confidence intervals.

14
New cards

Data Visualization

The use of graphical representations, such as charts, graphs, and maps, to visually display data in a way that is easy to understand and interpret.

15
New cards

Data Cleansing

The process of identifying and correcting errors, inconsistencies, and inaccuracies in data, including missing values, duplicate entries, and formatting issues.

16
New cards

Data Mining

The process of discovering patterns, trends, and relationships in large datasets using techniques such as clustering, classification, and association analysis.

17
New cards

Data Wrangling

The process of transforming and preparing data for analysis, including data cleaning, data integration, data aggregation, and data formatting.

18
New cards

Dashboard

A type of data visualization that displays KPIs and other metrics and indicators in a single interface.

19
New cards

Exploratory Data Analysis (EDA)

The initial phase of data analysis that involves exploring and summarizing data to gain insights and identify patterns using techniques like data visualization and summary statistics.

20
New cards

Machine Learning

A subset of artificial intelligence (AI) that uses algorithms and statistical models to enable computers to learn from data and make predictions without being explicitly programmed.

21
New cards

Key Performance Indicators (KPIs)

Quantifiable metrics used to measure the performance of a business or process and track progress towards goals or objectives.

22
New cards

Predictive Analytics

The use of historical data, statistical algorithms, and machine learning techniques to forecast future outcomes or behaviors.

23
New cards

Data-driven Decision Making

Making decisions based on data and evidence rather than relying solely on intuition or subjective opinions.

24
New cards

Microsoft Excel

A widely used spreadsheet software that allows data analysts to perform basic data analysis tasks such as data cleaning, manipulation, and statistical analysis.

25
New cards

SQL

Structured Query Language; a common query language used to interact with relational databases for retrieving and manipulating data.

26
New cards

Tableau

A popular data visualization tool that allows data analysts to create interactive dashboards and reports to communicate insights and findings.

27
New cards

Power BI

A business intelligence tool from Microsoft used to create interactive and dynamic dashboards and reports with various data connectors.

28
New cards

Google Analytics

A web analytics tool that provides insights into website performance and user behavior, allowing analysts to track KPIs and trends.

29
New cards

Apache Spark

A fast and general-purpose cluster-computing framework used for big data processing, data preprocessing, and machine learning tasks.

30
New cards

Jupyter Notebook

An open-source web-based tool for creating and sharing live code, equations, visualizations, and narratives in a single document.

31
New cards

Alteryx

A data preparation software providing a code-free platform to cleanse, analyze, and visualize data from various sources.

32
New cards

R

A programming language and open-source software environment widely used for statistical computing, modeling, and graphics.

33
New cards

Cell

In Excel, a single rectangular box identified by a combination of a column letter and a row number (e.g., A1A1) used to store data or perform calculations.

34
New cards

Formula

In Excel, a sequence of mathematical or logical operations that starts with an equal sign (==) and calculates a value based on cell data.

35
New cards

Worksheet

Also known as a spreadsheet; a single tab within an Excel workbook consisting of a grid of cells arranged in columns and rows.

36
New cards

Workbook

An Excel file that contains one or more worksheets, acting as the primary container for data storage and management.

37
New cards

Pivot Table

An Excel feature that allows users to aggregate and analyze data by dragging and dropping fields from a dataset into different areas.

38
New cards

Python

One of the most popular programming languages in the world, used for applications including data analysis and data science.

39
New cards

Python package

A mechanism used to distribute reusable code to extend Python's capabilities, with many specifically facilitating data analysis.

40
New cards

Numpy

A Python package used to perform a wide variety of mathematical operations on arrays.

41
New cards

pandas

A Python package used for working with data sets, containing functions for analyzing, cleaning, exploring, and manipulating data.

42
New cards

matplotlib

A popular Python library used for creating charts.

43
New cards

seaborn

A data visualization library based on matplotlib.

44
New cards

ggplot

An alternative to matplotlib for Python which uses a syntax similar to the R ggplot2 library.

45
New cards

scikit-learn

A Python package used for machine learning.

46
New cards

Anaconda

A Python distribution containing a curated collection of libraries and tools for scientific computing, data science, and machine learning.

47
New cards

Column

Also known as a field or attribute, it represents a specific type of data within a database table, defined by a name and a data type.

48
New cards

Row

Also known as a record or tuple, it represents a single instance of data in a table containing a set of values corresponding to the table columns.

49
New cards

Primary Key

A unique identifier for a row in a table, which can be a single column or a combination of columns, used to ensure data integrity.

50
New cards

Foreign Key

A column or set of columns in a table that refers to the primary key of another table, used to establish relationships between tables.

51
New cards

Index

A database object that provides a fast and efficient way to look up data in a table based on column values to speed up query performance.

52
New cards

Query

A request for data from a database, usually written in SQL, used to retrieve (SELECT), add (INSERT), modify (UPDATE), or remove (DELETE) data.

53
New cards

View

A virtual table created by a predefined SQL query that doesn't store data itself, used for simplifying complex queries and controlling data access.

54
New cards

Transaction

A sequence of one or more database operations executed as a single unit of work to ensure atomic, consistent, isolated, and durable (ACID) operations.

55
New cards

SQL JOIN

A mechanism used in relational databases to combine data from two or more tables based on related columns.

56
New cards

INNER JOIN

A join that returns only the rows where there is a match in both tables based on the specified join condition.

57
New cards

LEFT JOIN

A join that returns all rows from the left table and matching rows from the right table, providing NULL values if there is no match in the right table.

58
New cards

RIGHT JOIN

A join that returns all rows from the right table and matching rows from the left table, providing NULL values if there is no match in the left table.

59
New cards

OUTER JOIN

Also known as a full join; returns all rows from both the left and right tables, using NULL values for any non-matching columns.

60
New cards

UNION

An operation used to merge rows from multiple tables or queries with the same column structure into a single result set without duplicates.

61
New cards

NULL

The absence of a value or the lack of any data in a particular database field; it is not the same as zero or a zero-length string.