Create a pirate plot in the sea (a combination of a window and a plot)

There is a good plot in R called a pirate plot. This is a combination of graphics and storyline. How can I build something like this in python with seabed? Here you can find an example: http://rpubs.com/yarrr/pirateplot

+5
source share
1 answer

This is the closest thing I can think of to be like a pirate plan. Using both marine boxplot and stripplot .

 sns.set_style("whitegrid") tips = sns.load_dataset("tips") ax = sns.boxplot(x="day", y="total_bill", data=tips) ax = sns.stripplot(x="day", y="total_bill", data=tips, color=".25") 

The result is on this graph.

enter image description here

+5
source

Source: https://habr.com/ru/post/1270307/


All Articles