python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Stacked column bar chart over two variables
I have some data as shown below
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
data = {
'gender':['female', 'female', 'female', 'female', 'female', 'female', 'female', 'female...
Stephen Okiya
Votes: 0
Answers: 1
Increase box plot size inside Violin plot in Seaborn
I was plotting data in a Grouped Violinplot as shown in the image. Is there any way to increase the size (width) of the boxplots inside the violin plots in seaborn? As the boxplots are not even visibl...

Abhinav Choudhury
Votes: 0
Answers: 0
How to plot histogram difference with seaborn?
I tried to make something like this
data1 = get_data(param=param1)
data2 = get_data(param=param2)
plot1 = sns.histplot(data=data1, x="Value")
plot2 = sns.histplot(data=data2,...
Brankonymous
Votes: 0
Answers: 0
Adjusting seaborn's barplot bars width
I'm new to data analysis using python and I'm trying to create a very basic visualization of some Premier League football data. One of these visualizations is the number of corners per home team in th...
byln
Votes: 0
Answers: 1