Home Page

How to Embed Plotly Graphs in Websites
This tutorial content is going to teach you how to take your interactive plotly graphs and embed them into your wordpress blog, or any blog no matter where your blog is hosted.

4 ways to load data in Jupyter notebook and visual studio code.
How to load data from CSV file, URL link, ZIP file, .TAR file in Jupyter Notebook and Visual Studio Code using Python and Pandas. How to Use WGET, import Zipfile, Import Tarfile, and other file unlocking techniques.

How to Create a New DataFrame in Python using Pandas
This tutorial will teach you how to create new columns and datasets in python using pandas for data analysis. Pandas is one of the easiest and most popular tools to create datasets.

How to Engineer a New Feature in Python Using Pandas
Before you engineer a new feature, you need to ask yourself questions like, what is the purpose of this new feature, what am I trying to accomplish with this new feature, what experiment am I running?

How to Drop and Delete a Column In Python Using Pandas
This tutorial content will teach you how to drop or delete a column from your dataset using python and pandas. To drop multiple columns, you place the columns that you want in a list.

5 Ways to load a dataset in google colab python notebook.
This tutorial shows you 5 different ways to load data in google colab. It includes YouTube tutorial videos, code examples, and images to guide you through this detailed explanation.

How to upload your CSV file online for data analysis
This tutorial is going to teach you how to take a csv file and put it online so that you can do data analysis with the url link containing the data instead of using the csv file containing the data.

How to Create a 2D graph in python using Plotly Express
This tutorial is going to show you how to create a 2d graph in python using the plotly express library. Let’s dive in. Step 1: Install Plotly Express in Python, Anaconda, and Visual Studio Code.

How to Create a 3D Graph in Python using Plotly Express
This tutorial is going to show you how to create a 3d graph in python using the plotly express library. Step 1: Install Plotly Express in Anaconda environment or your local computer.

Predicting the Life Expectancy of a Country or Population
What factors determine how long people are going to live? Some factors that impact life expectancy include lifestyle, economic stability, access to medical care, social factors, and many other nuances of life.

How to Graph With MatplotLib Using Python With Pictures and Video
This tutorial is a stepwise guide on how to graph with matplotlib using python, taught with videos and images. The two graphs above is the graph we are going to re-create by tweaking all aspects of the graph.

Billions of Dollars in Student Loan Default!! Why?
$1.52 trillion in loan debt. The student loan program created with good intentions to help lower to middle income kids go to college has destroyed the lower to middle income families they were designed to help.

The Dangers and Consequences of Black Box Algorithms
Algorithm! What is it? You hear this word everyday and everywhere you go. Algorithms affect all aspects of our daily lives from using your phone alarm clock to listening to music and scrolling social media.

How to Install and Get Started with SQLite on Windows and Mac Computer
Installation process for Mac and windows are similar, but there is a slight difference in the code used and how many steps are required to create an alias for sqlite.
SQLite Download instructions for windows and Mac.

How to install, set up, configure, and get started with git and github
This video teaches git vs github and how to 1. Get a github account, 2. install git, 3. make sure git is intalled correctly, 4. configure git, 5. initialize, add, commit, and push, your first git code and git repository.

27 Data Science Career Options for People with Data Science Education and Experience
What career paths are available with a data science education? Have you ever wondered if there are alternatives to being a data scientist or what career paths a data science education could lead you to? Well, in this article, I have outlined career paths that are possible with a data science education. This list gives you an idea of careers that are related to data science.

Lambda School List of Interview Questions and Process
What questions are you asked during the lambda school interview process? I will reveal 6 questions that you are asked during the interview and why they ask you those questions. I will provide you with an overall idea of what to expect and help you to prepare for whatever questions they throw at you.

How to Prepare for Lambda School and any Data Science Program or School
Why would you want to prepare for lambda school data science program if you are already going to learn the material in lambda school. The purpose of preparation is to make your life easier and give you a head start above others while you are in lambda school.

What is Data Science? A mystery or not?
What exactly is data science? Is it a buzzword? A fancy way of saying advanced statistics and analytics? Or is it a mystery? This article will cover: what data science is, what the data science life cycle is, and what tools data scientists use to do their work.

3 ways to calculate Mean, Median, and Mode in Python
How to calculate mean, median, and mode in python by coding it from scratch.
How to calculate mean, median, and mode in python by using python libraries.
How to calculate mean, median, and mode in python by creating python functions.