Skip to main content
St Louis

Back to all posts

How to Drop Nan Values But Not Columns In Pandas?

Published on
3 min read
How to Drop Nan Values But Not Columns In Pandas? image

Best Data Cleaning Tools to Buy in February 2026

1 Cleaning Data for Effective Data Science: Doing the other 80% of the work with Python, R, and command-line tools

Cleaning Data for Effective Data Science: Doing the other 80% of the work with Python, R, and command-line tools

BUY & SAVE
Save 40%
Cleaning Data for Effective Data Science: Doing the other 80% of the work with Python, R, and command-line tools
2 5pcs Cell Phone Cleaning Kit Dual Side Multifunction Tools Anti-Clogging Nylon Brushes & Hook Cleaner for iPhone 17 Pro Max Charging Port, Phone Speaker Mini Cleaning Kits

5pcs Cell Phone Cleaning Kit Dual Side Multifunction Tools Anti-Clogging Nylon Brushes & Hook Cleaner for iPhone 17 Pro Max Charging Port, Phone Speaker Mini Cleaning Kits

  • DUAL-SIDED TOOLS ENSURE THOROUGH CLEANING FOR YOUR DEVICES.
  • FLEXIBLY DESIGNED BRISTLES SAFELY REMOVE DIRT WITHOUT SCRATCHING.
  • PERFECT FOR HARD-TO-REACH AREAS IN EVERYDAY LIFE AND GADGETS.
BUY & SAVE
5pcs Cell Phone Cleaning Kit Dual Side Multifunction Tools Anti-Clogging Nylon Brushes & Hook Cleaner for iPhone 17 Pro Max Charging Port, Phone Speaker Mini Cleaning Kits
3 Keyboard Cleaning Kit Laptop Cleaner, All-in-1 Computer Screen Cleaning Brush Tool, Multi-Function PC Accessories Electronic Cleaner Kit Spray for iPhone iPad Macbook Earbud Camera Monitor with Patent

Keyboard Cleaning Kit Laptop Cleaner, All-in-1 Computer Screen Cleaning Brush Tool, Multi-Function PC Accessories Electronic Cleaner Kit Spray for iPhone iPad Macbook Earbud Camera Monitor with Patent

  • COMPREHENSIVE KIT: INCLUDES BRUSHES, CLOTHS, AND KEYCAP PULLER.

  • EASY TO USE: CLEANS KEYBOARDS AND SCREENS IN JUST ONE SWIPE.

  • PORTABLE DESIGN: COMPACT AND TRAVEL-FRIENDLY FOR ON-THE-GO CLEANING.

BUY & SAVE
Save 25%
Keyboard Cleaning Kit Laptop Cleaner, All-in-1 Computer Screen Cleaning Brush Tool, Multi-Function PC Accessories Electronic Cleaner Kit Spray for iPhone iPad Macbook Earbud Camera Monitor with Patent
4 Cleaner Kit for AirPod, Multi-Tool iPhone Cleaning Kit, Cell Phone Cleaning Repair & Recovery iPhone and iPad (Type C) Charging Port, Lightning Cables, and Connectors, Easy to Store and Carry Design

Cleaner Kit for AirPod, Multi-Tool iPhone Cleaning Kit, Cell Phone Cleaning Repair & Recovery iPhone and iPad (Type C) Charging Port, Lightning Cables, and Connectors, Easy to Store and Carry Design

  • REVIVE DEVICES: RESTORE PERFORMANCE BY CLEANING PORTS AND CONNECTORS EFFORTLESSLY.

  • PORTABLE & CONVENIENT: LIGHTWEIGHT DESIGN FOR EASY TRANSPORT AND ON-THE-GO USE.

  • QUICK CUSTOMER SUPPORT: ENJOY HASSLE-FREE SERVICE WITH QUICK RESPONSE TIMES.

BUY & SAVE
Save 20%
Cleaner Kit for AirPod, Multi-Tool iPhone Cleaning Kit, Cell Phone Cleaning Repair & Recovery iPhone and iPad (Type C) Charging Port, Lightning Cables, and Connectors, Easy to Store and Carry Design
5 PurePort USB-C Multi-Tool Phone Cleaning Kit | Clean Repair & Restore Cell Phone Tablet & Laptop USB C Ports & Cables | Fix Unreliable & Bad Connections | Extend The Life of Your Tech Devices (Black)

PurePort USB-C Multi-Tool Phone Cleaning Kit | Clean Repair & Restore Cell Phone Tablet & Laptop USB C Ports & Cables | Fix Unreliable & Bad Connections | Extend The Life of Your Tech Devices (Black)

  • SAVE MONEY ON REPAIRS-RESTORE DEVICES WITH PUREPORT CLEANING KIT!

  • REVIVE USB-C PORTS EASILY-ELIMINATE DIRT FOR RELIABLE CHARGING!

  • CLEAN SPEAKERS AND SWITCHES-KEEP AUDIO PERFORMANCE AT ITS BEST!

BUY & SAVE
PurePort USB-C Multi-Tool Phone Cleaning Kit | Clean Repair & Restore Cell Phone Tablet & Laptop USB C Ports & Cables | Fix Unreliable & Bad Connections | Extend The Life of Your Tech Devices (Black)
6 Ordilend for iPhone Cleaning Kit for Charging Port Cleaner, Cleaner Kit for AirPod Multi-Tool iPhone Cleaner Repair Lightning Cable for iPad Connector Airpod Speaker Compact Portable with Storage Case

Ordilend for iPhone Cleaning Kit for Charging Port Cleaner, Cleaner Kit for AirPod Multi-Tool iPhone Cleaner Repair Lightning Cable for iPad Connector Airpod Speaker Compact Portable with Storage Case

  • THOROUGHLY CLEAN CHARGING PORTS & SPEAKERS WITH EASE
  • REVIVE POOR CONNECTIONS FOR RELIABLE CHARGING PERFORMANCE
  • SAFE & PORTABLE DESIGN FOR ALL YOUR ELECTRONIC DEVICES
BUY & SAVE
Save 20%
Ordilend for iPhone Cleaning Kit for Charging Port Cleaner, Cleaner Kit for AirPod Multi-Tool iPhone Cleaner Repair Lightning Cable for iPad Connector Airpod Speaker Compact Portable with Storage Case
7 5 Pack Phone Charge Port Cleaning Tool kit, Anti-Clogging Mini Brushes Cleaner for iPhone 17 Pro Max Camera Lens, Speaker and Receiver, Dual Side Multifunctional Cleaning Tool Compatible with AirPods

5 Pack Phone Charge Port Cleaning Tool kit, Anti-Clogging Mini Brushes Cleaner for iPhone 17 Pro Max Camera Lens, Speaker and Receiver, Dual Side Multifunctional Cleaning Tool Compatible with AirPods

  • DURABLE 5-PC BRUSH SET PROTECTS PHONE SPEAKERS FROM CLOGS.

  • EASILY REMOVES DIRT WITHOUT SCRATCHING YOUR DEVICES!

  • VERSATILE TOOL FOR CLEANING PHONES, HEADPHONES, AND HARD-TO-REACH SPOTS.

BUY & SAVE
5 Pack Phone Charge Port Cleaning Tool kit, Anti-Clogging Mini Brushes Cleaner for iPhone 17 Pro Max Camera Lens, Speaker and Receiver, Dual Side Multifunctional Cleaning Tool Compatible with AirPods
+
ONE MORE?

To drop NaN values but not columns in pandas, you can use the dropna() method with the axis parameter set to 0. This will drop rows that contain any NaN values while keeping all columns intact. You can also use the [subset](https://ubuntuask.com/blog/how-to-subset-a-teradata-table-in-python) parameter to specify specific columns to check for NaN values before dropping rows. Additionally, you can use the thresh parameter to set a threshold for the number of non-NaN values a row must have in order to be kept. This allows you to drop rows that have too many NaN values without dropping entire columns.

How to fill missing values in a pandas DataFrame?

There are several ways to fill missing values in a pandas DataFrame. Some common methods include:

  1. Using the fillna() method: The fillna() method allows you to fill missing values with a specific value or using a method like ffill for forward fill or bfill for backward fill.

df.fillna(0) # fill missing values with 0 df.fillna(method='ffill') # fill missing values with the previous non-missing value df.fillna(method='bfill') # fill missing values with the next non-missing value

  1. Using the interpolate() method: The interpolate() method will interpolate missing values based on the values before and after the missing values.

df.interpolate() # interpolate missing values

  1. Using the replace() method: The replace() method allows you to replace specific values in the DataFrame with another value.

df.replace(-999, np.nan) # replace -999 with NaN

  1. Using the dropna() method: If you prefer to simply drop rows with missing values, you can use the dropna() method.

df.dropna() # drop rows with missing values

These are just a few examples of how you can fill missing values in a pandas DataFrame. The best method to use will depend on your specific data and requirements.

How to drop rows with NaN values while keeping a copy of the original DataFrame in pandas?

You can achieve this by creating a copy of the original DataFrame before dropping the rows with NaN values. Here is an example:

import pandas as pd

Creating a sample DataFrame with NaN values

data = {'A': [1, 2, None, 4, 5], 'B': ['foo', 'bar', 'baz', None, 'qux']} df = pd.DataFrame(data)

Creating a copy of the original DataFrame

df_copy = df.copy()

Dropping rows with NaN values from the original DataFrame

df.dropna(inplace=True)

Print the original DataFrame and the copy after dropping NaN values

print("Original DataFrame:") print(df_copy) print("\nDataFrame after dropping NaN values:") print(df)

In this example, the original DataFrame df_copy is created as a copy of the original DataFrame df. The dropna() method is then used to drop rows with NaN values from the original DataFrame df, while the original DataFrame df_copy remains unchanged.

How to drop rows with NaN values in a specific column in pandas?

You can drop rows with NaN values in a specific column in pandas using the dropna() method. You can specify the column using the subset parameter. Here's an example:

import pandas as pd

Create a sample DataFrame

data = {'A': [1, 2, 3, 4], 'B': [5, 6, None, 8], 'C': [9, 10, 11, 12]} df = pd.DataFrame(data)

Drop rows with NaN values in column 'B'

df = df.dropna(subset=['B'])

print(df)

In this example, rows with NaN values in column 'B' will be dropped from the DataFrame.