Computational Thinking Theory Answers
Computational Thinking Theory Answers
Exploratory Data Analysis (EDA) is a technique used for data set analysis by summarizing
their most important features, typically using visual methods. It is helpful in identifying
patterns, trends, and outliers in data before applying formal modeling techniques. One of the
following Python libraries used in EDA is pandas.
ii. The Data Analysis (2 Marks)
Data analysis involves inspecting, processing, and analyzing data to draw meaningful
conclusions and make decisions.
It consists of descriptive, diagnostic, predictive, and prescriptive analytics. One of the
popular Python libraries for data analysis is NumPy.
iii. Data Visualization (2 Marks)
Data visualization refers to the use of charts, graphs, and maps to visually represent data
graphically in order to facilitate communication of information more effectively.
It allows for a better understanding of patterns and trends in big datasets. One of the popular
Python libraries for data visualization is Matplotlib.
e) In exploratory data analysis, you may use bar charts, box plots, and scatter plots.
Describe each. (3 Marks)
• Bar Chart: A bar chart illustrates categorical information in the form of rectangular bars,
where the length of every bar is equal to the value that is represented by it. It is often utilized
to compare different categories.
• Box Plot: A box plot (whisker plot) is a graphical image of data distribution displaying
median, quartiles, and outliers.
It is useful to spot data spread and outliers.
• Scatter Plot: A scatter plot is a graph of points on a plane in Cartesian coordinates
illustrating relationships between two variables. It is used to spot patterns and correlations
between numerical points.