I have a dataframe column which contains both English and Japanese texts. Like in the following manner:
----IDs-------Texts ---------
132 | 復旧完了。よろしく頼む!
623 | This is an English text
2364 | "<@UD3JFBREV> 収集した日本語のツイートデータはどこにありますでしょうか"
... | .....
Now, I want to separate English texts from Japanese texts from Texts
column. My new dataframe should return only English texts ignoring the Japanese texts. How can I do it?