Hello Good People,
I have dataframe, contains 4 columns
. The sample dataframe look likes this
id name description parent_id
001 A A may increase the activities of B 009
002 E A may be increased the activities of C 013
007 F A may decrease the activities of D 055
010 G A may be decreased the activities of G 067
011 K A may increase the activities of X 100
Now, I want to split the dataframe into 2 dataframe
based on the word increase/increased
and decrease/decreased
from the description
column.
I am extremely sorry that I do not have any reproducible code
. When I am searching Google, StackOverflow
I found that, splitting dataframe only for column or rows
words.
Any kind of suggestion is appreciable.