Python Forum
How define iteration interval increment
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How define iteration interval increment
#1
Hi,

I want to iterate through df rows and increase the iteration step increment by 3 (increment i=i+3 on each iteration). I use the below code, but it's not happening what I want to do. Please help me, someone.

import pandas as pd
import csv
input=r'D:\PythonCodes\correctiofactordata.csv'
df=pd.read_csv(input)
for i, row in df.iterrows():
    print(i)
    i+=3
my input data:

Time_golden	Golden	is_golden	Factor
20-03-2019 10:24	98.6	golden	1.0
20-03-2019 11:10	97.0	golden	1.3
20-03-2019 13:13	96.0	golden	1.5
21-03-2019 13:43	95.0	golden	0.95
23-03-2019 10:37	94.6	golden	0.96
23-03-2019 18:43	93.0	golden	1.0
24-03-2019 22:19	92.0	golden	1.3
25-03-2019 09:23	90.0	golden	1.5
26-03-2019 11:42	89.0	golden	0.95
27-03-2019 20:32	87.3	golden	0.96
27-03-2019 23:42	86.0	golden	1.5
28-03-2019 00:52	84.0	golden	0.95
28-03-2019 03:40	82.3	golden	0.96
21-03-2019 10:34	83.0	notgolden	1.0
24-03-2019 16:37	80.0	notgolden	1.3
24-03-2019 21:42	73.0	notgolden	0.95
27-03-2019 21:02	60.0	notgolden	0.96
28-03-2019 02:42	53.0	notgolden	1.0
20-03-2019 10:24	98.6	golden	1.3
20-03-2019 11:10	97.0	golden	1.5
20-03-2019 13:13	96.0	golden	0.95
21-03-2019 13:43	95.0	golden	0.96
23-03-2019 10:37	94.6	golden	1.5
23-03-2019 18:43	93.0	golden	0.95
24-03-2019 22:19	92.0	golden	0.96
25-03-2019 09:23	90.0	golden	1.0
26-03-2019 11:42	89.0	golden	1.3
27-03-2019 20:32	87.3	golden	1.3
27-03-2019 23:42	86.0	golden	1.0
Reply


Messages In This Thread
How define iteration interval increment - by SriMekala - Jun-01-2019, 12:43 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Mapping a value to an interval JazonKuer 12 1,994 Mar-17-2023, 07:59 PM
Last Post: Gribouillis
  help to increment a third list hermine 7 1,338 Nov-29-2022, 04:19 PM
Last Post: perfringo
  mysql id auto increment not working tantony 10 2,433 Oct-18-2022, 11:43 PM
Last Post: Pedroski55
  Confidence interval after doing penalised cox regression HatemAli 0 1,144 Feb-23-2022, 11:02 PM
Last Post: HatemAli
  Character Increment AnokhiRaaz 1 2,508 Apr-22-2021, 04:29 AM
Last Post: buran
  Increment text files output and limit contains Kaminsky 1 3,201 Jan-30-2021, 06:58 PM
Last Post: bowlofred
  Complex X Tick Interval JoeDainton123 0 1,474 Oct-05-2020, 07:27 PM
Last Post: JoeDainton123
  Increment formula Kristenl2784 4 2,886 Jul-20-2020, 10:14 PM
Last Post: Kristenl2784
  [openpyxl] Increment cells being pasted into Template Kristenl2784 4 3,579 Jul-16-2020, 10:00 PM
Last Post: Kristenl2784
  Updating a matrix in a time interval inside a for loop vp1989 4 2,906 May-17-2020, 07:15 PM
Last Post: vp1989

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020