• Blog
  • YouTube
  • Discord
Data Freelancing
Mentorships

Ryan Nolan

Ryan is a Data Scientist at a fintech company, where he focuses on fraud prevention in underwriting and risk. Before that, he worked as a Data Analyst at a tax software company. He holds a degree in Electrical Engineering from UCF.

  • Home
  • Ryan Nolan
  • Page 7
Python Pandas

Pandas Interpolation

May 12, 2025 Ryan Nolan No comments yet

To start we’re going to create a simple dataframe in python: https://youtu.be/BJHwPeRvyPE?si=lvsDqXBjb0mcC4ae import pandas as pd import numpy as np data = { ‘day’: pd.date_range(start=’2025-04-19′, periods=7), ‘temperature’: [np.nan, 30, np.nan, np.nan, 45, 40, np.nan] } df = pd.DataFrame(data) df2 = df.copy() df3 = df.copy() df4 = df.copy() Example 1 To start we’re going to create […]

Python Pandas

Pandas diff

May 6, 2025 Ryan Nolan No comments yet

By utilizing diff in Python Pandas we can find the difference between different rows and columns. In this article we will go over 9 different examples of utilizing it in different capacities. If you would like to watch a YouTube video based around the written tutorial, it is embedded below. We also have other Pandas […]

Python Pandas

Pandas Percentage Change

May 3, 2025 Ryan Nolan No comments yet

PCT_change() works nearly identical to .diff() within Python Pandas. The only difference is that we will get a decimal change instead of subtracting the two values. While the Pandas documentation calls this “Percentage Change” it really is the decimal representation of it and we need to multiply our value by 100 to get a true […]

Python Pandas

Pandas Rank

April 20, 2025 Ryan Nolan No comments yet

Learning how to use Pandas Rank is important when it comes to real world data and Interview Questions. In this lesson we will go over 10+ different examples of utilizing it. We will cover the different methods, percentage, null values, and groupby.  If you want to watch a YouTube video based around Pandas Rank, it […]

Python Pandas

Pandas Expanding

April 20, 2025 Ryan Nolan No comments yet

If you want to watch a YouTube video that is based around this Pandas Expanding tutorial, it is embedded below. https://youtu.be/5Bv-5GCj6GQ Tutorial Prep Before we start looking at expanding, we need to import both Pandas and Numpy. Pandas has expanding and Numpy will be utilized when we look at Null values a bit later in […]

Python Pandas

Pandas Handle Missing Data

April 11, 2025 Ryan Nolan No comments yet

When working in Python Pandas, you’ll encounter null (missing) data. As a Data Analyst or Scientist, you’ll need to develop strategies for handling missing data to ensure accurate and effective analysis of the dataset. In this lesson we will take a look at 24 different ways in which we can handle missing data within Python […]

Python Pandas

Pandas Sort

April 10, 2025 Ryan Nolan No comments yet

Mastering row sorting in Pandas is key to uncovering patterns and making your Series or DataFrame truly useful. In this lesson, we’ll explore 9 sorting use cases, including handling null values, sorting by multiple columns, order direction, and limiting results. If you want to watch a YouTube video based on this article, we have one […]

Python Pandas

Pandas Rolling

April 7, 2025 Ryan Nolan No comments yet

In Python Pandas a rolling function allows you to find statistics over a period. This is done through setting a window size. Let’s look at 12 different examples. If you want to watch our YouTube video based around the tutorial, it is embedded down below. Tutorial Prep Before we jump into this tutorial, let’s import […]

Python

Python Validate User Input

April 4, 2025 Ryan Nolan No comments yet

Example 1 isalpha Example 2 integer Example 3 float Example 4 custom invalid characters not using isalpha Example 5 date example Define the valid months for the baseball seasonFebruary (2) to October (10)

Python

Python Zip

April 4, 2025 Ryan Nolan No comments yet

To start we’re going to create a simple dataframe in python: If you want to watch a YouTube video based around the tutorial there is one embedded slightly below. https://youtu.be/_0PJul0QTY4 Example 1 In this basic example, we have two lists. One for jersey numbers and another for quarterbacks. We will then zip these together in […]

Posts pagination

Previous 1 … 6 7 8 … 11 Next

Search

Categories

  • LangChain 2
  • LeetCode 8
  • Linear Algebra 7
  • Python 17
  • Python Pandas 30
  • scikit-learn 18
  • Statistics 21
  • Time Series 6
  • Uncategorized 2
  • Web Scraping 4

Recent posts

  • Python Z-Score
  • Python Operators
  • Python tuples

Helping Data Professions further there careers

Important Links
  • Blog
  • Sponsorships
  • Mentorships
  • Data Freelancing
LinkedIn
  • Ryan Nolan
  • Matt Payne
Get in touch
  • ryannolandata@gmail.com

© Ryan & Matt Data Science

  • Terms & Conditions
  • Privacy Policy