次のような Pandas DataFrame があります。
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1072 entries, 0 to 1071
Data columns (total 10 columns):
city 1072 non-null values
latitude 1072 non-null values
longitude 1072 non-null values
manufacturer 1072 non-null values
name 1072 non-null values
offering 1072 non-null values
platformID 1072 non-null values
procedure 1072 non-null values
properties 1072 non-null values
sensorID 1072 non-null values
dtypes: object(10)
properties
文字列値のリストです:
df_devices.head(1).properties
Out[79]: 0 [urn:average_wind, urn:dew_point]
「urn:dew_point」エントリのみを含むレコードを選択したいのですが、それらをフィルタリングする方法がわかりません (isin
または別の方法を使用)