Q1: (10 Marks) Plot Jordan map with cities and assign the population for every city.
Q2: (20 Marks) There are 19 data sets under the seaborn library. Use any of these data sets to present the following data visualization types: Comparison and ranking, Correlation, Distribution, Part-to-whole relationships, Trends over time.
Note: You have to study (know the column names of every data set to know how to plot and visualize the data set) and use most parameters for every one.
Note: You can search for and use any Python library for plotting the above visualization types (for example, plotly express, seaborn, etc. Don't use squarify library. Don't use matplotlib. The following code is for retrieving the data set from seaborn and printing the specification of any data set. Here is an example:
import seaborn as sns
x = sns.get_dataset_names() # to retrieve all data sets
y = sns.load_dataset('iris') # to load the specification of the data set called iris
print(y)
print(x)
Note: Write the Python code and submit it on BlackBoard.