Grouping Our Dataset
Build on the fundamentals of exploratory data analysis by learning grouping and indexing.
We'll cover the following...
We'll cover the following...
Categorical variable visualization
Let's begin our EDA process, starting with our categorical variables, continent and country. Let's start with a bar plot to understand the representation of continents in the dataset, so we can answer the following question:
What countries and continents are represented in the dataset?
With this bar plot, we can see a higher representation of instances corresponding to Africa in the dataset.
Now that we've ...