Curriculum
Course: Data Science
Login

Curriculum

Data Science

Text lesson

DS What is Data

What is Data?

Data is a collection of information.

One of the key goals of Data Science is to organize data, making it understandable and manageable.

Data can be divided into two categories:

  • Structured data
  • Unstructured data

Unstructured Data

Unstructured data lacks organization, and it needs to be structured before it can be analyzed.

img_unstructured_dataimg_unstructured_data2  

Structured Data

Structured data is well-organized, making it easier to process and analyze.

img_structured_data

How to Structure Data?

Data can be structured or presented using an array or a database table.

For example, an array:

[80, 85, 90, 95, 100, 105, 110, 115, 120, 125]

The following example demonstrates how to create an array in Python:

Example

Array = [80859095100105110115120125]
print(Array)

In Data Science, working with large data sets is common.

In this tutorial, we will simplify the concepts of Data Science by using a small, easy-to-interpret data set.