seaborn

How to plot the dependence of the week name on numeric values

Here is the dataset. I want to build a graph on which the abscissa axis will have the names of the days of the week (column weekday), and on the ordinate the values of the column visits, respectively.

Output of histograms with normal distribution. matplotlib seaborn

I'm still dealing with yesterday's question. in the first part of the code, I was able to output a histogram with a normal di ... ачения') ax1.hist(train['SalePrice'], bins=20, density=True) ax1.plot() ax2.hist(train['GrLivArea'],bins=20, density=True)

How can I use seaborn (catplot or barplot) to display the value of several charts on one chart?

How can I use seaborn (catplot or barplot) to display the value of multiple DataFrame columns on a single graph? The followin ... sns.barplot(x=df.index.values, y='c1', data=df) #sns.barplot(x=df.index.values, y='c2', data=df) plt.show() Desired graph

How to place the Y-axis value next to the chart marker?

Hello, I would like to see the Y-axis values also appear next to the points of the graph. I appreciate it now! plt.figure(f ... d') plt.yscale('log') #coloca o eixo y em escala logaritmica plt.show() The current result is the following graph:

Change the maximum values in a bar chart in Seaborn (barplot)

When I'm going to "plot" a bar chart it modifies my Y-axis values proportionally , but I want them to stay with the actual va ... ns.barplot(data=dados_vendas_Activision_2012, x='Platform', y='Global_Sales', ci=None)

How to generate a horizontal multiple chart using python

Good afternoon, I'm doing a job for college where I need to generate a multiple chart in horizontal bars. I am using the foll ... ple of the chart generated in excel: Follows dataframe I'm using: Since now I appreciate the answers, very much thank you!