0
How do I calculate specific values??
i want to add '60' to 'only negative number' in DateFlame.
1 Antwort
+ 1
I think I understand your question.  Have you tried something like below?
for each in dataframe:
    if each < 0:
        each + 60
i want to add '60' to 'only negative number' in DateFlame.