Pranay Arora has Published 47 Articles

Introduction to Financial Concepts using Python

Pranay Arora

Pranay Arora

Updated on 04-Oct-2023 14:37:17

69 Views

Python provides us with a variety of tools as well as libraries that help us work with the foundations of probability. Probability has a wide scale use case from AI content detection to card games. The random module is often used for probability related problem statements. This combined with libraries ... Read More

Foundations of Probability in Python

Pranay Arora

Pranay Arora

Updated on 04-Oct-2023 14:27:50

178 Views

Probability deals with the study of random events as well as their outcomes. It is an essential concept in various fields like finance, physics, engineering and data science. It is defined as the likelihood of an event occurring as no event can be predicted with 100% certainty. Hence probability is ... Read More

Forecasting Using ARIMA Models in Python

Pranay Arora

Pranay Arora

Updated on 04-Oct-2023 14:19:19

317 Views

ARIMA is a statistical model used for time series forecasting that combines three components: autoregression (AR), integration (I), and moving average (MA). Autoregression (AR) − This component models the dependence between an observation and a number of lagged observations. It's based on the idea that past values of a ... Read More

Cleaning Data with Apache Spark in Python

Pranay Arora

Pranay Arora

Updated on 04-Oct-2023 14:15:29

294 Views

In today's time, when we have high volume and velocities of data flowing, Apache Spark, an open source big data processing framework, is a common choice as it allows parallel and distributed processing of data. Cleaning of such data is an important step and Apache Spark provides us with a ... Read More

Building Chatbots in Python

Pranay Arora

Pranay Arora

Updated on 04-Oct-2023 14:02:39

147 Views

A chatbot is a computer program designed to simulate conversations with human users via text or voice. It uses AI and NLP techniques to help understand and interpret user’s messages and provide relevant responses. In this article, we will see how to create a chatbot with the help of Python. ... Read More

Clustering Methods with SciPy

Pranay Arora

Pranay Arora

Updated on 04-Oct-2023 13:46:13

77 Views

Clustering is a technique in machine learning and data science that involves grouping together similar data points or objects into clusters or subsets. The goal of clustering is to find patterns and structures in data that may not be immediately apparent, and to group related data points together which can ... Read More

Union of Python Tuples

Pranay Arora

Pranay Arora

Updated on 29-Aug-2023 13:41:48

289 Views

A tuple, in python, is a sequential data structure that consists of a number of values. It is an immutable data structure. Hence, it is tricky to get a union of two tuples. Through this article we will try to dive into a few of the best possible approaches and ... Read More

Python - Type conversion in Nested and Mixed List

Pranay Arora

Pranay Arora

Updated on 29-Aug-2023 13:14:18

126 Views

Python is widely used and accepted today because of its versatility and readability. Its powerful features allow developers to perform complex tasks with ease. One such essential feature is type conversion or type casting. Especially with Python lists, which are heterogeneous in nature which often demands converting each nested list ... Read More

Python - Convert List to Single Valued Lists in Tuple

Pranay Arora

Pranay Arora

Updated on 29-Aug-2023 13:12:48

99 Views

This article is our approach to try and understand the various methods to convert a list to single valued lists in Tuple. We will look into the possible Python programming to achieve the same. We will discuss the implementation details, time and space complexities, and efficiency of each method based ... Read More

How to print Superscript and Subscript in Python?

Pranay Arora

Pranay Arora

Updated on 29-Aug-2023 13:10:37

4K+ Views

Python is a multipurpose programming language which is well known to us for its simplicity and power. Whether you are starting as a fresher or an experienced developer, Python helps us with a wide range of tools to control and display text in various formats. Many times we need superscripts ... Read More

Advertisements