reading-notes

Class 14

Back to home page

Data visualization

Q. What are the key differences between Matplotlib, Seaborn, and Bokeh libraries in terms of their features and use cases? Provide an example of a specific visualization that is more suitable for each library.

Q. In the Seaborn library, what are the main functions to create relational, categorical, and distribution plots? Briefly explain the purpose of each type of plot and provide an example use case.

  1. Relational plots, used to compare the relationship of an x and y variable
    • scatterplot()
    • lineplot()
  2. Categorical Plots:, used for categorising data
    • barplot()
    • boxplot()
  3. Distribution plots, used for accessing the distribution of data
    • histplot()
    • kdeplot()

Q. Discuss the role of the Seaborn Cheat Sheet in a Python developer’s workflow. What are some key sections or elements featured in the cheat sheet that can help a developer quickly reference Seaborn functionalities?

Bookmark and review