Digital Data Part 4
Digital Data Part 4
Chapter Outline
15.1 Introduction to data science
15.2 NumPy
15.3 Pandas
15.4 Exploratory data analysis
15.5 Data visualization
15.6 Summary
Data Science provides the ability to derive insights and make informed decisions
from data. Data science helps people make decisions in disciplines as diverse as
healthcare, business, education, politics, environmental science, and social
sciences.
This chapter aims to introduce the field of data science and the data science life
cycle. The resources provided in this chapter are meant to guide readers using
Python to further explore data science.
Learning objectives
By the end of this section you should be able to
1|Page
DATA SCIENCE PART 4
Concepts in Practice
What is data science?
What is the first stage of any data science life cycle?
a. data visualization
b. data cleanup
c. data acquisition
How many stages does the data science life cycle have?
a. 3
b. 4
c. 5
What does a data scientist do in the data exploration stage?
a. document insights and visualization
b. analyze data
c. data cleaning and visualization
Data science tools
Several tools and software are commonly used in data science. Here are some
examples.
2|Page
DATA SCIENCE PART 4
Kaggle Kernels: Kaggle Kernels is an online data science platform that provides a
collaborative environment for building and running code. Kaggle Kernels support
Python and R and offers access to datasets, pre-installed libraries, and
computational resources. Kaggle also hosts data science competitions and
provides a platform for sharing and discovering data science projects.
Excel/Sheets: Microsoft Excel and Google Sheets are widely used spreadsheet
applications that offer basic data analysis and visualization capabilities. They can
help beginners get started with data manipulation, basic statistical calculations,
and simple visualizations.
Checkpoint
Concepts in Practice
Data science tools and software
Between Python, R, and Java, which is the most popular language in data
science?
a. Python
b. R
c. Java
3|Page