Ohne Verwendung, groupby
wie würde ich Daten ohne herausfiltern NaN
?
Angenommen, ich habe eine Matrix, in der Kunden 'N / A', 'n / a' oder eine ihrer Variationen ausfüllen und andere sie leer lassen:
import pandas as pd
import numpy as np
df = pd.DataFrame({'movie': ['thg', 'thg', 'mol', 'mol', 'lob', 'lob'],
'rating': [3., 4., 5., np.nan, np.nan, np.nan],
'name': ['John', np.nan, 'N/A', 'Graham', np.nan, np.nan]})
nbs = df['name'].str.extract('^(N/A|NA|na|n/a)')
nms=df[(df['name'] != nbs) ]
Ausgabe:
>>> nms
movie name rating
0 thg John 3
1 thg NaN 4
3 mol Graham NaN
4 lob NaN NaN
5 lob NaN NaN
Wie würde ich NaN-Werte herausfiltern, damit ich die folgenden Ergebnisse erzielen kann:
movie name rating
0 thg John 3
3 mol Graham NaN
Ich ~np.isnan
schätze, ich brauche so etwas, aber die Tilda funktioniert nicht mit Saiten.
filtered_df = df[df['name'].notnull() | df['foo'].notnull()]
quelle
quelle