Author: onestop_data

Data Scientist who loves to share some knowledge on the field.

Python

Everything About Python List Comprehension

by:

Python List Comprehension is one of my favorite things when coding. Using it, you can accomplish most things you would do with a regular loop, but …

Python

Python Try Except Made Simple

by:

Python Try Expect is very useful to catch an unexpected error or to create an exception to a known and/or unknown error. In this tutorial, you …

Python

Secrets About Python Enumerate

by:

Python Enumerate command was unknown to me for a long time. On this recipe, you will learn how to use it when using a for loop …

Python

Everything about Python Set

by:

This post intends to teach you everything about Python’s set. Honestly, I hope you can learn here how useful this statement can be, I think sets …

Python

Everything About Python for Loop

by:

This post intends to teach you everything about Python for loop. A for loop in Python is used differently than most programming languages. In my honest …

Bioinformatics

Remove Poor Reads in FASTQ/A

by:

Have you needed to Clean your FASTA/FASTQ file? I know it is a common task. Back in the day, I found a Python 2 script to …

Data visualizationPython

Simple Scatter Plot in Python

by:

Generating a Scatter Plot in Python is probably one of the most common plots, and it can easily be accomplished. This tutorial shows using how using …

BioinformaticsData visualization

Effortless Recruitment Plot

by:

Creating a recruitment plot can be a pain when you don’t have the right tool. A fragment recruitment plot is a great way to visualize how …

Python

Top 6 New Features in Python 3.8

by:

This blog post will describe some of the top features added to Python 3.8. Are you one of those Python people like me that are resistant …

Python

Ridiculously Simple Tips for a Python Dictionary

by:

This tutorial teaches how to use the Python dictionary, and it will focus on dictionary get, append, update, sort, comprehension, etc. Moreover, it will convince you …