Is there a way to populate reactive column in a dataframe. Example
df
A B
24 27
24 25
25 15
29 19
13 22
39 28
Expected output (based on values in column B. If the value is less than 25, less, or else More).
df1
A B C
24 27 More
24 25 More
25 15 Less
29 19 Less
13 22 Less
39 28 More
Can we populate column C above reactively based on values in column B