代码之家  ›  专栏  ›  技术社区  ›  DPM

无法检测dataframe(python)中的NaN值

  •  0
  • DPM  · 技术社区  · 4 年前

    cities = ox.geocode_to_gdf(['Município de Lisboa', 'Município de Oeiras', 'Município da Amadora', 'Município de Loures', 'Município de Odivelas'])
    whole_polygon = cities.unary_union #unary union of both geometries
    G = ox.graph_from_polygon(whole_polygon, network_type='drive', simplify=True)
    G_nx = nx.relabel.convert_node_labels_to_integers(G)
    
    nodes, edges = ox.graph_to_gdfs(G_nx, nodes=True, edges =  True)
    

    enter image description here

    我试图确定 name NaN 但由于某些原因,它无法检测到:

    for i in range(len(edges)):
    
        if edges['name'].iloc[i] == float('nan'):
            print('here')
    

    float('NaN') 而不是代码中的内容。我查过了当 名称 价值是 这个变量实际上是一个浮动。“名称”列中有三种类型的值: list , str , float ,其中浮点值仅在值为

    1 回复  |  直到 4 年前
        1
  •  1
  •   ombk    4 年前
    data = {"h":[1,np.nan,2]}
    pd.DataFrame(data).isnull()
    
    #output
        h
    0   False
    1   True
    2   False