0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jupyterにおけるデータの抽出その1

Posted at

#データの表から一部を抽出する方法
スクリーンショット 2019-04-25 11.59.04.png
① 例えば、このデータからカレーのデータのみを抽出したい場合は、

店舗A.料理.str.contains('カレー')

とすれば良い。

② しかし、このままではポークカレー、インドカレーのみでなく、カレー味チキンも含んでしまう。そういう時は、

(店舗A.料理.str.contains('カレー')) & (~店舗A.料理.str.contains('味'))

とすると、カレーを含みつつ、味という文字を含まないものを抽出できる。

③ カレーとラーメン両方を抽出したい場合は、

店舗A.料理.str.contains('カレー|ラーメン')

とすると、ポークカレー、味噌ラーメン、インドカレー、塩ラーメン、カレー味チキンを抽出することができる。②の方法と合わせて、

(店舗A.料理.str.contains('カレー|ラーメン')) & (~店舗A.料理.str.contains('味'))

とすれば、ポークカレー、味噌ラーメン、インドカレー、塩ラーメンを抽出できる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?