What is the difference between data science vs data analytics?
Perhaps you are at the beginning of your career or making a change in your career and want to know the difference between data...
Use Google Colab and Kaggle Data with bonus: fastai2
I was just running through this process and thought it might be helpful for others:
What to do in Kaggle:
Step 1. Go to your Kaggle...
What is the Python sorted function? An example of how to use it.
The Python sort function is very straight-forward. The easiest way to think about this is the various ways you can sort files on your...
Best practices for naming variables in Python
When naming variables in Python there are some best practices that we will discuss. If you don't follow the best practices you'll get errors...
How to return or print multiple variables in Python
We have discussed ways to handle variables and the best practices for naming variables in Python. We have noticed a number of searches on...
How to create Python class variables
Python is an incredibly powerful language. Learning how to create Python class variables is part of developing an object-oriented programming method. Creating individual objects...
How to add a column to pandas dataframe
Pandas allow for many methods for adding and dropping content. We have covered how to drop a column and how to drop a row...
How to drop rows in a pandas dataframe
A previous tutorial showed you how to drop columns in a pandas dataframe. Now we will look at how to drop rows in a...
How to drop columns in a pandas dataframe
Pandas is a great tool for working on any machine learning or data science project. It's a fundamental part of data wrangling. In this...
Machine Learning: How to pull Google Sheets data into Colabs
If you are using Google Colabs it would make sense to want to pull in a CSV file for a machine learning project. It...