Most voted "seaborn" questions
Python library for visualization and integration of pandas package data structures.
Learn more…13 questions
Sort by count of
-
1
votes1
answer226
viewsWhat is the equivalent of Seaborn’s```argument in matplotlib?
When I want the points belonging to different categories to be colored each of a color in the seaborn, i simply put the categorical variable of interest as argument value hue. Replicable example:…
-
1
votes1
answer104
viewsHow to change the background of a chart with Python 'Seaborn'
I try to change the background of my chart with the 'Seaborn' module, however, I am not successful. I installed the module today (16/04/2021). code: import matplotlib.pyplot as plt import seaborn as…
-
0
votes1
answer364
viewsAdd midline with Seaborn - python
As I include a vertical line referring to the average of each of the classes in the histograms, using Abor? import numpy as np import pandas as pd import seaborn as sns from sklearn import datasets…
-
0
votes1
answer24
viewsplotting plineplot with Seaborn excluding certain elements
I would like to plot a lineplot with sns but didn’t want it to plot a specific line sns.set_palette('Accent') sns.set_style('darkgrid') ax = sns.lineplot(x=dados['date'],y=dados['cases'],err_style=…
-
0
votes1
answer328
viewsChange the maximum values on a bar chart in Seaborn(barplot)
When I go to "plot" a bar chart it modifies my values on the Y-axis proportionally , but I want them to stay with the real values they have in the dataset, as I change this configuration? dataset:…
-
0
votes0
answers10
viewsManually create error bar in Seaborn
I have the error of my calculated data and want to use this information to plot an error bar on the graph. I saw that Seaborn makes automatic, but I want to use my estimate. I’m using the lineplot…
-
0
votes1
answer551
viewsHow to place the value for the y-axis next to the chart marker?
Hello, I would like the figures for the y-axis to appear alongside the points on the graph. Thanks in advance! plt.figure(figsize = (16,8)) plt.xticks(rotation = 90) sns.lineplot(x =…
-
0
votes1
answer54
viewsRegplot with year on X-axis (Python)
I’m trying to plot a regression graph where the date interval is in year format, but I can’t centralize the data on the X axis. The chart range below is between 2016 and 2020.…
-
0
votes1
answer202
viewsHow to generate a horizontal multiple graph using python
Good afternoon, I’m doing a job for the college where I need to generate a multiple graph in horizontal bars. I’m using the following code: df_escolaridade['Espacialidades'] =…
-
0
votes1
answer142
viewsDoubt Column Label - Seaborn Python
I have a Doubt when Plotting a chart in Seaborn, where the label of the Axis of Column is very large However, I would like to "break" this line in 2, or 3 Lines, to get smaller the label box and…
-
0
votes0
answers22
viewsPlotting of graphics in Iteration
Good afternoon, Contextualizing, This is a study of control charts from the Tennessee Eastman Process dataset. The IDV below is corresponding to n° of the fault I wish to plot. Without the iteration…
-
-1
votes2
answers407
viewsChart with Seaborn with one of the axes being the index
I have a dataframe, it has a standard index, but replace this standard index by the name of the Brazilian states and now I would like to plot a Plot bar vertical, using the Y axis with the name of…
-
-1
votes2
answers32
viewsHow to increase the title font of a Seaborn.displot chart?
Hello! I have the following code: f = sns.displot(df,x="yearOfRegistration", kde=True, binwidth=5) f.set(title = "Distribuição de Veículos com base no Ano de Registro") f.set_axis_labels("Ano de…