Amazing job! A very didactic video with a lot of value. Thank you for sharing it.
@jpjameszhang46752 жыл бұрын
excellent introduction, especially the introduction of the statistics and the concept of plots.
@mosama223 жыл бұрын
Thank you for the beautiful video :-)
@Muchael7547 ай бұрын
I’ve used R ggplot for data visualisation and now learning Python. I was wondering for a long time how to do jitter plot in a different way as I used to use Graphpad, where we get swam plot! Thanks for telling me the name of the plot!!!
@KimberlyFessel7 ай бұрын
Awesome! Yes, I find both the strip plot and the swarm plot to be super useful for getting a sense of the distribution of points. And they look nice too 😊
@maheshvenkat99563 жыл бұрын
It would be great if you can explain how to interpret the plot. It is a brilliant step by step visual explanation
@KimberlyFessel3 жыл бұрын
Oh I see - like some inferences we can draw from the plot? Interesting idea and I will consider that for an upcoming video. Thanks!
@haotruong20572 жыл бұрын
Hello can you tell me how to show the average data in each group in Seaborn
@nicolasrojastelles16063 жыл бұрын
Outstanding explanation! Thanks. Could you please make an example with a colorbar. Is it possible to use a color bar with a stripplot like we can use in a scatterplot?
@KimberlyFessel3 жыл бұрын
Glad you enjoyed the video and good suggestion. Theoretically, you should be able to pass a continuous variable to the "hue" argument of the stripplot like you can with the scatterplot. I just did a few tests, and this works but doesn't work as well as the scatterplot. This makes me wonder if the stripplot may have a bug or need to process data a bit differently. 🤔
@rishidixit79392 ай бұрын
While making the stripplot how to get in inter quartile lines ?
@KimberlyFesselАй бұрын
I don't think the stripplot natively comes with interquartile lines, but you could plot an empty box plot behind your stripplot to see them. For example: sns.boxplot(data=df, x='my_col', fill=False) sns.stripplot(data=df, x='my_col'); You could even turn the boxplot whiskers and fliers off with whis=0 and fliersize=0 if you'd like.
@rishidixit7939Ай бұрын
@@KimberlyFessel Thank You for the reply. I have actually saved and recommended your Seaborn Playlist to everyone. Your method of explaining is actually very comprehensive and nice which is not the case with a majority of KZbin creators in this field. I do not know much about you but still I would request you if you get the time please do try and make application based and explanation videos in the field of stats, Data Science and Probability. Though the field is cluttered there is a serious lack of comprehensive explanations and quality. Also please upload your video on Web Scraping which you made for PyCon US on your own channel. It is very well explained and an amazing Tutorial
@KimberlyFesselАй бұрын
@rishidixit7939 Thanks very much for the recommendation to others! And I hope to make more videos in 2025.
@comebackivanovitch3 жыл бұрын
Amazing!
@KimberlyFessel3 жыл бұрын
Thank you very much! 😄
@minakshimathpal86984 жыл бұрын
sns.set_style('white') sns.stripplot(cars.weight, ['']*len(cars), hue=cars.cylinders, can you plzz explain what ['']*len(cars) is doing here
@KimberlyFessel4 жыл бұрын
Sure thing. For that example, I wanted just one horizontal strip of data, so I set the y-axis category to be one empty string for every datapoint. (That syntax just repeats the elements of the list by the number of rows in cars.) This also means that I don't have any y-axis tick labels because the category is just the empty string.
@sivasu074 жыл бұрын
Mam ur teaching is excellent Can u teach me seaborn libraries in python
@KimberlyFessel4 жыл бұрын
So glad you enjoyed the video! 👍 You can check out my full "Introduction to Seaborn" playlist here: kzbin.info/aero/PLtPIclEQf-3cG31dxSMZ8KTcDG7zYng1j
@sivasu074 жыл бұрын
@@KimberlyFessel do u have videos for multiple bar plots using twinx func
@sivasu074 жыл бұрын
@@KimberlyFessel last ques- how to do multiple box plots in seaborn
@KimberlyFessel4 жыл бұрын
Hi -- no videos using twinx yet but will consider that for the future!
@KimberlyFessel4 жыл бұрын
As subplots? You could create multiple box plots on the same figure by using pyplot to create subplots (plt.subplots(1, 2) would create one row with two columns of figures). I'll likely to a subplot video at some point 😄