Niharika Aitam has Published 168 Articles

How to check Django version?

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:27:23

518 Views

Django is a free, open source web framework which is written in python and works with the python language. It follows the Model view controller(MVC) architectural pattern. This is manly used to develop the web applications in an easy and faster way with minimal fuss. The key features of the ... Read More

How to check any script is running in linux using Python?

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:25:18

3K+ Views

The psutil module in Python helps us to retrieve information about the processes that are currently running in our local system. What is a script? AScript is a set of instructions that are written in programming language and executed in the computer. We can perform a variety of ... Read More

How to change ticks label sizes using Python’s Bokeh

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:23:53

115 Views

Bokeh is one of the data visualization libraries available in python, which allows the users to create the interactive plots, data applications, dashboards in web browsers. The Bokeh provides us varieties of plots and charts such as scatter plot, line plot, bar charts and area charts etc. and also more ... Read More

How to change the PyGame icon?

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:22:22

775 Views

While building video games, we often try to setup an image or logo for that developed game. Python provides a function in pygame named, set_icon(), which sets the icon as desired. Pygame is a set of modules that allows us to develop the games and multimedia applications. This is built ... Read More

How to change the position of legend using Plotly Python?

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:21:06

769 Views

Plotly python is the library in python to create interactive visualizations using the plotly java script. It provides a wide range of charts and plots like scatter plots, line charts, bar charts and so on. Installing plotly library To use the plotly python library first we have to install ... Read More

How to change the position of legend in Pygal?

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:19:58

88 Views

Pygal is abbreviated as Python Data Visualization Library, which is designed to create the interactive charts and graphs. This is library is built with the advanced features than the SVG(Scalar Vector Graphics) format, to work with the high quality graphics that can be easily embedded into the web pages and ... Read More

Convert angles from radians to degrees in a NumPy array

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 10:00:33

68 Views

Degrees and Radians are the two units of measurement for the angles. Degrees are the most commonly used unit of measurement for the angles. It is denoted by theta(Ø). There are 360 degrees in circle and each degree is divided into 60 minutes and each minute is further divided ... Read More

Convert a NumPy array to an image

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 09:59:16

6K+ Views

The array created using the Numpy library can be converted into an image using the PIL or opencv libraries in python programming language. Let’s see about each library one by one. Python Image Library PIL is abbreviated as Python Image Library, which is an image processing libraries in python. ... Read More

Convert a NumPy array into a csv file

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 09:57:05

476 Views

The Numpy is the library in the python programming language which is abbreviated as Numerical Python. It is used to do the mathematical, scientific and statistical calculations within less time. The output of the numpy functions will be an array. An array created by the numpy functions can be stored ... Read More

Convert a Python array into a Numpy array

Niharika Aitam

Niharika Aitam

Updated on 09-Aug-2023 09:55:07

98 Views

Array is one of the data structures which allows us to store the same data type elements in a contiguous block of memory. Arrays can be in one dimension or two dimension or three dimension up to 32 dimensions. In python, there are different ways to create arrays. One way ... Read More

Advertisements