HowTo

Pipreqs Tutorial – How to Create Requirements.txt File In Python with Ease

Reproducibility and re-usability of your Python projects is an essential aspect of being a software developer or engineer, and one of the ways to do so is to provide means that others can get the same working environments you used for your projects and the same versions of packages and libraries used. This is one …

Pipreqs Tutorial – How to Create Requirements.txt File In Python with Ease Read More »

How to Create Requirements.txt File In Python

When working on any python project or data science project it is essential to always work in an environment that makes your project reusable and repeatable without any issues for anyone that picks up your project in the future. This will even help you yourself when you revisit your project in the future. One of …

How to Create Requirements.txt File In Python Read More »

How to Add Layout to Streamlit Apps

Streamlit is awesome we several cool and useful features, in this tutorial we will explore yet another additional feature of streamlit – st.beta_columns() and st.beta_expander(). This feature is available from version 0.68 and upwards hence you will need to upgrade your previous version via pip install streamit -U or pip install streamlit –upgrade Let us …

How to Add Layout to Streamlit Apps Read More »

3 Exploratory Data Analysis Tools In Python For Data Science

Exploring your dataset is an essential aspect of every data science task or project. As an aspect of the Data Science Life Cycle , it allows you to derive descriptive and practical insight into what your data comprises of. It is essential to know how to derive such insight from your data by creating your …

3 Exploratory Data Analysis Tools In Python For Data Science Read More »

How to Run Streamlit Apps From Google’s Colab

The simplicity that streamlit offers for building apps is so cool and useful. But sometimes you may be constrained by lack of compute or incompatible  working environment on your local computer. In most cases Colab solves that problem. But what if you want to share your streamlit app with others from Colab. In this tutorial …

How to Run Streamlit Apps From Google’s Colab Read More »

Exploratory Data Analysis of Drug Review Dataset using Python

Exploratory Data Analysis is an important aspect of any data science project. It forms the initial steps before moving into the Machine learning aspects. In this tutorial we will be exploring the drug review dataset using python in an elaborate way.  In doing EDA (exploratory data analysis) it is recommended to keep in mind the …

Exploratory Data Analysis of Drug Review Dataset using Python Read More »

Clustering Countries into Continents using Unsupervised Machine Learning

Unsupervised Machine learning has several applications among them include its usage in identifying patterns and for clustering similar data into clusters or groups. In this tutorial we will see how to use unsupervised ML to perform a simple task of identifying the right continents a country belongs to given the longitude and the latitude. Unsupervised …

Clustering Countries into Continents using Unsupervised Machine Learning Read More »