Elegant way to create empty pandas DataFrame with NaN of type float

后端 未结 5 2160
轮回少年
轮回少年 2020-12-08 02:10

I want to create a Pandas DataFrame filled with NaNs. During my research I found an answer:

import pandas as pd

df = pd.DataFrame(index=range(0,4),columns=[         


        
5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 02:35

    Hope this can help!

     pd.DataFrame(np.nan, index = np.arange(), columns = ['A'])
    

提交回复
热议问题