Search Header Logo
Importance of data

Importance of data

Assessment

Presentation

Computers

10th - 12th Grade

Medium

Created by

Rasmi Khawaldeh

Used 2+ times

FREE Resource

22 Slides • 12 Questions

1

Importance of data

Grade 10



By : Rasmi Alkhawaldeh

Slide image

2

Learning outcomes

After completing this unit, you will be able to:

• Explain the importance of data

• Create visual representations of data that models a real-world event or process

• Evaluate visual representations of data that models a real-world event or process

3

WARMING

When buying a new computer or a phone, how do we select the best option? What factors should we consider?

4

DATA

Information and facts that are collected by observation

5

Data Analysis

The process of studying data to find useful information

6

Correlation

The relationship between different data elements

7

Data Visualisation

A graphical representation of information and data

8

Line Plots

A graphical representation of data by connecting all data points with a line

9

Scatter Plots

A graphical representation of data on a 2D axes

10

ACTIVITIES


Slide image

11

Multiple Choice

Information and facts that are collected by observation

1

DATA

2

Correlation

3

A graphical representation of information and data

4

The process of studying data to find useful information

12

Fill in the Blank

The relationship between different data elements is called :__________

13

Open Ended

Exit Ticket


What is the differences between the Line plot and Scatter Plot ?

14

Multiple Choice

A graphical representation of data by connecting all data points with a line

1

Line Plots

2

Scatter Plots

15

Create plots in Python


Slide image

16

There two types of plots we will learn

1- Line Plot

2- Scatter Plot

Slide image

17

Four steps to create plots in Python:

  • 1-  import the libraries ( matplotlib , Pandas )

  • 2- Store the data you need to plot in a DataFrame

  • 3- Create plot

  • 4- Show plot

18

EXAMPLE

Khalid owns an ice cream kiosk at the beach, He wanted to create a line plot to see if there is any relationship between the fruit ice cream sales and the weather temperature, The data he collected is shown in the table below.

Slide image

19

STEP 1 ( IMPORT LIBRARIES )

import pandas as pd

import matplotlib.pyplot as plt

20

STEP 2 ( Store data in a DataFrame )

sales = pd.DataFrame([[20, 24, 26, 28, 30, 32, 34, 36, 38],  [300,300,320,400,450,470,450,550,630]])

21

STEP 3 (Create the plot using the data in each row)

plt.plot( sales.loc[0,:], sales.loc[1,:] )

22

STEP 4 (Show the plot)

plt.show()

23

The code in Python

( Line Plot )


Slide image

24

The output

Line Plot

Slide image

25

The code in Python

( Scatter Plot )


Slide image

26

The output

Scatter Plot

Slide image

27

Multiple Choice

Question image
1

Line Plot

2

Scatter Plot

3

None

28

Multiple Choice

Question image

1

Line Plot

2

Scatter Plot

3

None

29

Multiple Choice

Question image

The output of this code is :

1
2
3

None

30

Fill in the Blank

complete the blank with correct word


import __________ as plt

31

Fill in the Blank

complete the blank with correct word


________ pandas as pd

32

Fill in the Blank

complete the blank with correct word


sales = pd.___________([[20, 24, 26, 28, 30, 32,34,36,38],

[300,300,320,400,450,470,450,550,630]])

33

Fill in the Blank

complete the blank with correct word


plt.scatter( sales._____[0,:], sales.loc[1,:] )

34

Fill in the Blank

complete the blank with correct word


___________.show()

Importance of data

Grade 10



By : Rasmi Alkhawaldeh

Slide image

Show answer

Auto Play

Slide 1 / 34

SLIDE