
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Priya Mishra has Published 159 Articles

Priya Mishra
2K+ Views
When working with Plotly Express, a powerful Python library, it becomes essential to understand how to effectively incorporate a legend into single-trace scatterplots. This article serves as a comprehensive guide, explaining step-by-step how to create visually appealing scatterplots using Plotly Express. From loading data and data cleaning to data analysis ... Read More

Priya Mishra
2K+ Views
Having the correct setup tools and packages installed is crucial for Python development on Linux. Setuptools is one such tool that plays a vital role in effortlessly building, distributing, and installing Python packages. This article will provide you with a detailed walkthrough of the installation process for Setuptools on ... Read More

Priya Mishra
3K+ Views
Legends play a crucial role in conveying information about plotted elements which are mainly contained in the matplotlib which is a popular Python library used for data visualization but sometimes when dealing with complex visualizations, the default vertical spacing between legend entries may not be ideal. This article explores techniques ... Read More

Priya Mishra
1K+ Views
Adding a border around a NumPy array can be a useful operation in various applications, such as image processing or data visualization. NumPy is a popular Python library used for numerical computing, which provides a powerful array object for handling multidimensional data. However, the process of adding a border ... Read More

Priya Mishra
1K+ Views
When it comes to enhancing user experience, providing keyboard shortcuts or bindings for menu and toolbar items can greatly improve accessibility and efficiency and Tkinter stands as a popular choice for developing interactive applications in Python. In this article, we will explore the process of activating Tkinter menus and toolbars ... Read More

Priya Mishra
2K+ Views
When working with large datasets in Python, efficient data manipulation is crucial, one common task is accessing specific columns of a NumPy array, which can be essential for performing various operations and analysis.. NumPy, a popular library for numerical computing, provides powerful tools for handling arrays. In this article, ... Read More

Priya Mishra
1K+ Views
MongoDB is a well-known NoSQL database that offers a scalable and flexible approach to store and retrieve data, it is also possible to access the database collections through Python, which is a versatile programming language. Integrating MongoDB with Python enables developers to interact with their database collections effortlessly. This ... Read More

Priya Mishra
1K+ Views
OpenCV's blobFromImage is a vital function in computer vision that allows the detection and extraction of blobs from an image. Understanding how this function works is crucial for various image processing tasks. In this article, we delve into the inner workings of OpenCV's blobFromImage, exploring its parameters and their ... Read More

Priya Mishra
481 Views
When working with PyTorch, a popular deep learning framework, the torch.argmax function plays a crucial role in finding the indices of maximum values in a given tensor, while it's relatively simple to understand its usage for 1-dimensional or 2-dimensional tensors, the behavior becomes more intricate when dealing with 4-dimensional tensors. ... Read More

Priya Mishra
2K+ Views
Python's functools module offers the cmp_to_key function, a valuable tool for sorting objects according to specific requirements. This function enables the transformation of a comparison function that evaluates two arguments and delivers a negative, zero, or positive outcome into a key function suitable for sorting. By utilizing cmp_to_key, the process ... Read More