Types of Data
Structured Data (rows/columns CSV, Excel)
Semi-Structured Data (JSON / XML)
Unstructured Data (Video, Audio, Document, Email)
Structured Data
101
Rachel Green
2020-05-01
201
Joey Tribianni
1998-07-05
301
Monica Geller
1999-12-14
401
Cosmo Kramer
2001-06-05
Semi-Structured Data
JSON
XML
Unstructured Data
Text Logs: Server logs, application logs.
Social Media Posts: Tweets, Facebook comments.
Emails: Customer support interactions.
Audio/Video: Customer call recordings and marketing videos.
Customer Reviews: Free-form text reviews.
Images: Product images user profile pictures.
Documents: PDFs, Word files.
Sensor Data: IoT data streams.
These can be ingested into modern data warehouses for analytics, often after some preprocessing. For instance, text can be analyzed with NLP before storing, or images can be processed into feature vectors.
Last updated