Data Analysis with Python Projects - Medical Data Visualizer

Tell us what’s happening:
In the medical data visualizer, what does “get the figure for output” mean? And after writing the code for drawing the figure by seaborn, how can I get the figure?

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36

Challenge: Data Analysis with Python Projects - Medical Data Visualizer

Link to the challenge:

Seaborn generates matplotlib figures and axes or objects with figures and axes in them. You will need to read the documentation on the seaborn function you are using to draw the figure to determine the type and then read the matplotlib documentation to save the figure as a file.

1 Like