Priya Mishra has Published 159 Articles

How to add metadata to a DataFrame or Series with Pandas in Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 16:06:46

3K+ Views

One of the key features of Pandas is the ability to work with metadata, which can provide additional information about the data that is present in a DataFrame or Series. Pandas is a powerful and widely used library in Python which is used for data manipulation and analysis. In this ... Read More

How to add Matplotlib graph in Kivy?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:58:45

4K+ Views

Integrating or adding matplotlib graphs into kivy applications can help developers to create more informative and engaging user interfaces. Kivy is an open-source Python framework that is used to develop mobile and dektop applications whereas Matplotlib is a data visualization library used for creating charts, graphs, and other visualizations. In ... Read More

How to Add Markers to a Graph Plot in Matplotlib with Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:49:06

1K+ Views

While creating plots using Matplotlib which is a library of Python one common task is to add markers to indicate data points. Matplotlib provides a variety of marker styles which includes circles, triangles, squares, dots, and diamonds. These markers can be customized further with different sizes, colors, and edge sizes. ... Read More

How to Add Leading Zeros to a Number in Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:42:35

25K+ Views

While working with numbers in Python, it is often necessary to add leading zeros to a number. Adding leading zeros to a number is important when you are dealing with formatted data or when you need to ensure that a certain number of digits are present in a number, or ... Read More

How to add drag behavior in kivy widget?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:39:50

698 Views

Adding drag behavior in a Kivy widget can be a useful feature for a range of applications, including educational applications, productivity tools, and games. Dragging objects on the screen is one of the essential features of the natural user interface. We will be using a class in Kivy known as ... Read More

How to add custom fonts in Kivy - Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:37:34

1K+ Views

Kivy has the ability to use and add custom fonts to the widgets that are being used in the applications, which can help developers to add a personalized and unique touch to their applications. Adding a custom font in kivy involves two major steps which are loading the custom font ... Read More

Histogram in pygal

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:33:05

314 Views

 Pygal is a Python library that is used for creating interactive charts and graphs, one of the charts that Pygal supports is the histogram. Histogram is basically a graphical representation of the distribution of numerical data which helps us to quickly identify patterns, outliers, and trends in a dataset provided. ... Read More

Appending a dictionary to a list in Python

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:27:56

5K+ Views

Dictionaries allows us to store key-value pairs, while lists allow you to store multiple values in a single variable and one common task is to append a dictionary to a list, which can be useful for storing multiple dictionaries in a single list. In this article, we will explore how ... Read More

Animated Floating Action Button in kivy

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:24:19

531 Views

In kivy, one of the most popular UI components in modern mobile is the Floating action button(FAB), which is used to represent the primary action of the applications. Kivy is an open-source Python framework that is used fr creating cross-platform user inerfaces. In this article, we will discuss how to ... Read More

Advertisements