as I already mentioned in the title.
For example, I have a dataframe in python like this :
dataframe = pd.DataFrame({'Energy Consumption': [20, 21, 19, 18, 25, 40, 18]})
If I want to multiply a number such as 0.3 on row index 3 to the end. How can I do that by the shortest operation time.
Thanks in advance.
