Niharika Aitam has Published 145 Articles

Comparing and Managing Names Using name-tools module in Python

Niharika Aitam

Niharika Aitam

Updated on 07-Aug-2023 17:05:16

239 Views

The name-tools module is a python library which provides us the tools to work with the names. These are used in many applications likely data cleaning, text processing and Natural Language Processing etc. It has a several functions for comparing and managing the names. Installing name-tools Before working with ... Read More

How to remove axes spine from the plot in seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:40:16

952 Views

The axes spines, also known as the axis lines, which are the lines that define the borders or boundaries of a plot's coordinate system. In a two-dimensional plot, there are typically four axes spines such as top, bottom, left, and right. These spines create the framework for the plot and ... Read More

CMY and CMYK Color Models using Python

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:38:23

3K+ Views

The CMY and CMYK color models are subtractive color models used in printing and graphic design. In Python, we can work with these color models using various libraries and tools. Let's see each color model in detail. CMY color model The CMY color model, also known as the subtractive color ... Read More

How to change the figure style to Ticks in Seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:36:39

1K+ Views

In Seaborn, the "ticks" figure style is a minimalistic style that removes the background grid lines but retains the tick marks on the axes. This style focuses on presenting the data without any distracting elements and is useful when we want a clean and simple look for our plots. When ... Read More

How to change the figure style to Dark in Seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:35:55

871 Views

In Seaborn, the figure style refers to the overall visual appearance and aesthetics of a plot. Seaborn provides several built-in figure styles that can be used to enhance the look and feel of your visualizations. These figure styles affect various elements such as colors, grid lines, background, fonts, and more. ... Read More

What is the way to convert the figure style to Whitegrid in Seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:34:53

377 Views

Seaborn is a popular data visualization library in Python that provides a variety of styles to enhance the visual appearance of plots. One of the available styles is "whitegrid, " which offers a white background with grid lines. Changing the figure style in Seaborn is a straightforward process, and it ... Read More

How to change the figure style to Darkgrid in Seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:34:00

701 Views

Seaborn provides several built-in figure styles that we can choose from to enhance the visual appearance of our plots. These styles affect various elements such as colors, grid lines, background, and fonts. To set the figure style in Seaborn, we can use the sns.set_style() function. The following are the available ... Read More

Finding the Common items among Python dictionaries

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:33:27

250 Views

A Dictionary is one of the unordered data structures available in python to store the data in the key and value pair. It is also known as Associative array or Hash map in other programming languages. The dictionary is represented using the curly braces {} and the key and value ... Read More

What is the purpose of White figure style in seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 17:32:38

321 Views

The "white" figure style in Seaborn is a predefined style that provides a clean and minimalistic appearance to our plots. It is designed to enhance the visual clarity of the plot elements and prioritize the data representation. The purpose of the white figure style is to create visually appealing and ... Read More

Can Seaborn be used to perform calculations on data, such mean or standard deviation?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 12:42:57

548 Views

Seaborn is primarily a data visualization library and does not provide direct methods for performing calculations on data, such as calculating mean or standard deviation. However, Seaborn works seamlessly with the pandas library, which is a powerful data manipulation library in Python. You can use pandas to perform calculations on ... Read More

Advertisements