Skip to content

Commit

Permalink
Added second q
Browse files Browse the repository at this point in the history
  • Loading branch information
yashdave003 committed Feb 16, 2024
1 parent 84d13e7 commit ba53742
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions visualizations/images/visualizations.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,9 @@ plt.legend(loc = 'upper left') # can specify location of legend
```
<center><img src = "example_label_plot.png" width = "500"></img></a></center>
<br>

## The y-axis of my `histplot` shows the count, not the density

Look into the `sns.histplot` (documentation)[https://seaborn.pydata.org/generated/seaborn.histplot.html] and see what arguments the `stat` parameter takes in. By default, `stat=count`, but if you wanted to normalize the distribution such that the total area is 1, you could consider `stat=density`.


0 comments on commit ba53742

Please sign in to comment.