Data Exploration & Preparation
Module 1
Introduction to data science workflows, data formats, and preparation techniques
© 2026 WayUp
Common problems and solutions when dealing with data science projects
The complete journey from raw data to a deployed model:
Machine learning algorithms need data in specific formats:
| Feature 1 | Feature 2 | Feature 3 | Target |
|---|---|---|---|
| value | value | value | label |
| value | value | value | label |
| ... | ... | ... | ... |
What tools and approaches should we consider?
| Tool | Pros | Cons |
|---|---|---|
| Jupyter | Interactive, visual | Cell order issues, hard to version |
| Python scripts | Reproducible, versionable | Less interactive |
| Orange | Visual workflow, no coding | Limited customization |
Installation:
pip install orange3
Load the Titanic dataset in Orange and explore:
Survived)Data Exploration & Preparation
Next: Data Formats - JSON, XML, CSV
© 2026 WayUp - way-up.io