Seaborn

  • Регрессионные графики в Seaborn с использованием regplot и lmplot

    В этом учебном пособии вы узнаете, как использовать Seaborn для построения регрессионных графиков с помощью функций sns.regplot() и sns.lmplot(). Может показаться странным, что Seaborn предлагает две функции для отображения регрессивных связей. Не волнуйтесь – это руководство объяснит все, что вам нужно знать. К концу этого учебника вы научитесь..

  • Seaborn residplot – Построение остатков линейной регрессии

    В этом уроке вы узнаете, как создать график остатков с использованием Seaborn с помощью функции sns.residplot(). Графики остатков позволяют оценить остатки аппроксимации регрессии, легко понимая их различия. К концу этого урока вы узнаете следующее: Что такое график остатков? График остатков используется…

  • Seaborn jointplot() – Создание совместных графиков в Seaborn

    В этом учебном пособии вы узнаете, как использовать функцию Seaborn jointplot() для создания информативных совместных графиков. Совместные графики позволяют создавать полезные визуализации, которые отображают как двухмерное распределение (например, точечный график), так и распределение каждой из отдельных переменных. По завершению этого учебного пособия у вас будет…

  • Seaborn displot – Распределенческие графики в Python

    В этом руководстве вы научитесь создавать распределенческие графики Seaborn с помощью функции sns.displot(). Распределенческие графики показывают, как распределена переменная (или несколько переменных). Seaborn предлагает множество различных функций визуализации данных о распределении, которые включают создание гистограмм или оценок плотности ядра. Seaborn предоставляет специализированные функции для обеих этих визуализаций.

  • Seaborn ecdfplot – Эмпирические функции накопленного распределения В этом руководстве вы узнаете, как использовать функцию ecdfplot() библиотеки Seaborn для создания эмпирических функций накопленного распределения (ECDF), чтобы визуализировать распределение набора данных. Графики ECDF являются ценными инструментами для визуализации распределения наборов данных, позволяя вам глубже понять ваши данные. В этом учебнике вы узнаете о различных параметрах...

  • Seaborn rugplot – Визуализация маргинальных распределений

    В этом руководстве вы узнаете, как использовать функцию Seaborn rugplot() для визуализации распределений на полях, чтобы визуализировать распределение набора данных. Rug plots являются ценными инструментами для визуализации того, как распределены наборы данных, позволяя вам получить глубокое понимание ваших данных. В этом учебнике вы узнаете о различных параметрах и…

  • Seaborn kdeplot – Создание графиков оценки плотности ядра

    В этом руководстве вы научитесь использовать функцию Seaborn histplot() для создания гистограмм, чтобы визуализировать распределение набора данных. Гистограммы являются ценными инструментами для визуализации распределения наборов данных, позволяя получить глубокое представление о ваших данных. В этом учебнике вы узнаете о различных параметрах и опциях Seaborn…

  • Seaborn histplot – Создание Гистограмм в Seaborn

    В этом руководстве вы узнаете, как использовать функцию Seaborn histplot() для создания гистограмм, которые визуализируют распределение набора данных. Гистограммы являются ценными инструментами для визуализации распределения наборов данных, позволяя вам получить глубокое представление о ваших данных. В этом учебнике вы узнаете о различных параметрах и опциях Seaborn…

  • Seaborn catplot – Визуализация категориальных данных в Python

    В этом учебном руководстве вы узнаете, как создавать связные графики в Seaborn с помощью функции sns.catplot(). Категориальные графики показывают связь между числовой и одной или несколькими категориальными переменными. Seaborn предлагает множество различных функций для визуализации категориальных данных, которые охватывают весь спектр категориальных точечных диаграмм, диаграмм распределения категориальных данных и диаграмм оценки категориальных данных. Seaborn предоставляет специализированные…

  • Средняя тенденция для категориальных данных в Seaborn Pointplot

    В этом учебном пособии вы узнаете, как использовать функцию pointplot в Seaborn для создания точечных диаграмм. Точечные диаграммы обладают функционалом, схожим с бар-диаграммами, но предоставляют больше информации, включая погрешности вокруг меры центральной тенденции. Это может звучать сложно, но не волнуйтесь, это руководство поможет понять...

  • Seaborn stripplot: Jitter Plots для распределений категориальных данных

    Функция Seaborn stripplot позволяет создавать визуализации данных, которые легко и эффективно показывают числовое распределение данных по категориям. Существует не так много функций, которые позволяют это делать: boxplot и violin plots являются двумя такими функциями, но они могут быть пугающими для нетехнической аудитории.

  • Seaborn Countplot – Подсчет категориальных данных в Python

    В этом руководстве вы узнаете, как использовать функцию countplot() из библиотеки Seaborn для создания информативных графиков подсчета. График подсчета похож на столбчатую диаграмму и гистограмму и показывает количество категориальных значений. Seaborn предоставляет простую и интуитивно понятную функцию для создания информативных графиков подсчета, которые легко создавать и просто читать…

  • Seaborn swarmplot: Bee Swarm Plots for Distributions of Categorical Data

    The Seaborn swarmplot function allows you to create data visualizations that easily and effectively show the numeric distribution of data over categories. There are many functions that allow you to do this: the boxplot and violin plots are two of these functions, but they can be intimidating to non-technical audiences. This is where the swarm… Read More »Seaborn swarmplot: Bee Swarm Plots for Distributions of Categorical Data

  • Seaborn Violin Plots in Python: Complete Guide

    In this tutorial, you’ll learn how to create Seaborn violin plots using the sns.violinplot() function. A violin plot is similar to a box and whisker plot in that it shows a visual representation of the distribution of the data. However, the violin plot opens much more data by displaying the data distribution. Violin plots are… Read More »Seaborn Violin Plots in Python: Complete Guide

  • Customize Seaborn Legends Location, Labels, Text, etc.

    Seaborn is a Python library that allows you to make statistical visualizations. Under the hood, it uses Matplotlib and has significant integration with the Pandas data analysis library. The legend in Seaborn is a box that provides descriptions of the different attributes of the graph, including which colors represent which attributes. In this tutorial, you’ll learn… Read More »Customize Seaborn Legends Location, Labels, Text, etc.

  • Seaborn heatmap: A Complete Guide

    Heatmaps are valuable tools to quickly visualize large amounts of data across a scale. In this tutorial, you’ll learn how to use Seaborn to create beautiful and informative heatmaps using the sns.heatmap() function. Seaborn makes it incredibly easy and intuitive to create heatmaps, allowing you to customize them with a familiar function. By the end… Read More »Seaborn heatmap: A Complete Guide

  • Creating Multi-Plot Grids in Seaborn with FacetGrid

    Seaborn is a data visualization library that lets you build complex statistical visualizations in a simple way. One of the great things is the ability to easily add subplots in Seaborn. In this tutorial, you’ll learn how to create multi-plot grids using the Seaborn FacetGrid and subplots. Because Seaborn is intended to make complex things… Read More »Creating Multi-Plot Grids in Seaborn with FacetGrid

  • Seaborn despine: How to Work With and Remove Spines

    Seaborn spines are the borders around a plot that help frame the data visualization. Seaborn makes it simple to customize and remove the spines of a visualization using the sns.despine() function. In this tutorial, you’ll learn how to use the Seaborn despine function to customize and remove spines from a visualization. By the end of… Read More »Seaborn despine: How to Work With and Remove Spines

  • Seaborn Titles and Axis Labels: Add and Customize

    In this tutorial, you’ll learn how to add titles and axis labels to Seaborn plots. Seaborn is built on top of Matplotlib, which allows you to add and customize titles in significant detail. Similarly, Seaborn makes adding and customizing titles or axis labels simple and intuitive. Are you looking to do this in Matplotlib instead?… Read More »Seaborn Titles and Axis Labels: Add and Customize

  • How to Install Seaborn in Python (Fix: no module named seaborn)

    In this tutorial, you’ll learn how to install the Seaborn library using Python. You’ll also learn how to fix the no module named seaborn error. The Seaborn library builds on top of Matplotlib to make statistical visualization simple and intuitive to create. By the end of this tutorial, you’ll have learned the following: Want to… Read More »How to Install Seaborn in Python (Fix: no module named seaborn)

  • Seaborn relplot – Creating Scatterplots and Lineplots

    In this tutorial, you’ll learn how to create Seaborn relational plots using the sns.relplot() function. Relational plots show the relationship between two or more variables. For example, you might want to use Seaborn to create line plots to show the relationship between continuous variables. Similarly, you may want to create scatter plots. Seaborn provides dedicated… Read More »Seaborn relplot – Creating Scatterplots and Lineplots

  • Seaborn Scatter Plots in Python: Complete Guide

    In this complete guide to using Seaborn to create scatter plots in Python, you’ll learn all you need to know to create scatterplots in Seaborn! Scatterplots are an essential type of data visualization for exploring your data. Being able to effectively create and customize scatter plots in Python will make your data analysis workflow much… Read More »Seaborn Scatter Plots in Python: Complete Guide

  • Creating Pair Plots in Seaborn with sns pairplot

    In this tutorial, you’ll learn how to create pair plots in Seaborn, using the sns.pairplot() function. These visualizations plot pairwise relationships in a dataset so that each variable in a dataset will be plotted against each other variable in the dataset. This allows you to easily visualize the relationships between pairs of variables. Seaborn is… Read More »Creating Pair Plots in Seaborn with sns pairplot

  • Seaborn Boxplot – How to Create Box and Whisker Plots

    Learn how to create a Seaborn boxplot, including how to add styles, titles, axis labels and add grouped boxplots.

  • Seaborn lineplot – Create Line Plots with Seaborn

    Learn how to use the Seaborn line plot andrelplot functions to create beautiful line charts, add titles, customize styles, multiple line charts.

  • Seaborn barplot() – Create Bar Charts with sns.barplot()

    Learn how to use the Seaborn barplot and countplot functions to create beautiful bar charts, add titles, customize styles, group bar charts.

  • Seaborn in Python for Data Visualization

    In this tutorial, you’ll learn how to create a wide variety of different plots using Seaborn, as well as how to apply different styling options to these plots.

Last updated