“Writing enables us to find out what we know - and what we don’t know - about whatever we’re trying to learn.”
– William Zinsser, Writing to Learn

Faster Pandas Operation with Swifter

As data professionals, we use Pandas most of the time for a variety of data processing tasks. When it comes to applying user-defined functions (UDFs) on a pandas series (or...

Run python programs in the background in Linux Systems

Firstly, you need to add the shebang line in the Python script which looks like the following: #!/usr/bin/env python3 This path is necessary if you have multiple versions of Python...

Korean text tokenization using PyKoTokenizer - A model-based approach

PyKoTokenizer is a deep learning (RNN) model-based word tokenizer for Korean language. We can use it to tokenize Korean text. Segmentation of Korean Words Written Korean texts do employ white...

Building your own Python package and hosting it in PyPi

Follow the below steps and run suitable commands. Make sure you have upgraded version of pip Windows python -m pip install --upgrade pip Linux/MAC OS python3 -m pip install --upgrade...

Docker Commands in Practice

General Usage Start a container in background docker run -d IMAGE_NAME Start an interactive container docker run -it IMAGE_NAME bash View the contents of an image/container docker run --rm -it...