Answers for "how replace words with number in fillna in python"

2

python pandas replace nan with null

df.fillna('', inplace=True)
Posted by: Guest on April-16-2020
0

fillna string

# importing pandas module 
import pandas as pd 
  
# making data frame from csv file 
nba = pd.read_csv("nba.csv") 
  
# replacing na values in college with No college 
nba["College"].fillna( method ='ffill', inplace = True)
Posted by: Guest on October-13-2020

Code answers related to "how replace words with number in fillna in python"

Python Answers by Framework

Browse Popular Code Answers by Language