私はデータセットを、データ型 "オブジェクト"として文字列の形で 'useful_crit'という列で構成しました。pandasのキーワードに基づいて2つの異なる列に文字列を分割しますか?
Pat_ID Useful_crit
1 **inclusive range**:age 35 to 75 - type 2 diabetes **exclusive range**: type 1 diabetes
2 **inclusive range**:patients aged 21 and above **exclusive range**:patients who are mentally `
各列の文字列は、包括的な範囲と排他的な範囲として2つの一般的な単語で構成されています。ここでは、同じ文字列から 'inclusive range'と 'exclusive range'という2つの列を作成したいと考えています。出力は
Pat_ID inclusive range exclusive range
1 age 35 to 75 - type 2 diabetes type 1 diabetes
2 patients aged 21 and above patients who are mentally
のようになりますか?
ジェームズだあなたの質問に対処している場合、(https://stackoverflow.com/help/someone-answers)[答えを受け入れる]してください。ありがとう。 –