📜  fillna 字符串 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:15.551000             🧑  作者: Mango

代码示例2
# 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)