
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
Mukul Latiyan has Published 473 Articles

Mukul Latiyan
2K+ Views
PySpark is a powerful tool for processing large datasets in a distributed computing environment. One of the fundamental tasks in data analysis is to convert data into a format that can be easily processed and analysed. In PySpark, data is typically stored in a DataFrame, which is a distributed collection ... Read More

Mukul Latiyan
2K+ Views
The Poisson distribution is a probability distribution that models the occurrence of events in a fixed time or space interval, given the average rate of occurrence. It is commonly used in fields such as physics, engineering, and economics to model the arrival of particles, failures of components, or customer arrivals. ... Read More

Mukul Latiyan
14K+ Views
In data analysis, it's often necessary to count the number of unique values in a pandas Groupby object. Pandas Groupby object is a powerful tool for grouping data based on one or more columns and performing aggregate functions on each group. By counting the number of unique values in a ... Read More

Mukul Latiyan
9K+ Views
Pandas is a popular Python library used for data manipulation and analysis. One common task in data analysis is to count the number of duplicate values in a Pandas DataFrame. Duplicates can occur when multiple rows have the same values in all columns, or in a subset of columns. There ... Read More

Mukul Latiyan
827 Views
In this article, we will learn and explore how we can create beautiful command line interfaces in Python. First, let's talk a little about Python and then we will talk about command line interfaces. Why Python? Python is a popular high−level programming language known for its simplicity, readability, ... Read More

Mukul Latiyan
5K+ Views
In Python, counting the number of instances of a class is a common task that can be accomplished using various techniques. One straightforward approach is to use a class variable to keep track of the number of instances created. To implement this method, you can define a class variable, such ... Read More

Mukul Latiyan
37K+ Views
Counting the number of occurrences of a specific value in a column is a common task in data analysis. Fortunately, the pandas library in Python provides a quick and easy way to do this with the value_counts() method. This method returns a Pandas series that contains the count of each ... Read More

Mukul Latiyan
981 Views
PyTorch is a popular open−source machine learning framework that provides efficient tensor operations on both CPUs and GPUs. A tensor is a multi−dimensional array in PyTorch, and it is the fundamental data structure used for storing and manipulating data in PyTorch. In this context, a 3D tensor is a tensor ... Read More

Mukul Latiyan
2K+ Views
Unstructured data is data that does not follow any specific data model or format, and it can come in different forms such as text, images, audio, and video. Converting unstructured data to structured data is an important task in data analysis, as structured data is easier to analyse and extract ... Read More

Mukul Latiyan
1K+ Views
Pandas is a popular data manipulation library in Python, used for cleaning and transforming data. It provides various functionalities for converting data types, such as the astype() method. However, manually converting data types can be time−consuming and prone to errors. To address this, Pandas introduced a new feature in version ... Read More