Blog

Python Detect and Translate language

2 minute read

The internet is flooded with articles and posts for translating the language using Machine Learning or Deep Learning LSTM models and building a deep neural n...

Python Logging

11 minute read

Log is an important tool for any developer. it helps in debugging and log important information or exceptions that emits while the code executes

Working with Pandas datetime

7 minute read

In this post we will explore the Pandas datetime methods which can be used instantaneously to work with datetime in Pandas.

How to find Percentage Change in pandas

3 minute read

So you are interested to find the percentage change in your data. Well it is a way to express the change in a variable over the period of time and it is heav...

Dataframe Visualization with Pandas Plot

7 minute read

Visualization has always been challenging task but with the advent of dataframe plot() function it is quite easy to create decent looking plots with your dat...

How to shift a column in Pandas

4 minute read

If you want to shift your columns without re-writing the whole dataframe or you want to subtract the column value with the previous row value or if you want ...

Pandas Groupby Tutorial

7 minute read

Hope if you are reading this post then you know what is groupby in SQL and how it is being used to aggregate the data of the rows with the same value in one ...