Types of Data in Data Science

Data Science with Python 6 min min read Updated: Mar 07, 2026 Beginner
Types of Data in Data Science
Beginner Topic 3 of 10

Types of Data

Data scientists work with multiple types of data formats.

  • Structured Data
  • Semi Structured Data
  • Unstructured Data

Structured Data

Structured data is organized into rows and columns such as relational databases.

Python Example

python import pandas as pd df = pd.read_csv("customers.csv") print(df.describe())

Next: Popular Data Science Tools

Get Newsletter

Subscibe to our newsletter and we will notify you about the newest updates on Edugators