Python Forum
Looping Through Large Data Sets
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Looping Through Large Data Sets
#1
Hello all

I have a csv file with over 60,000 rows of data which i have imported into a dataframe, I want to perform varies calculations on this dataframe.

I am looping through the data using a while loop and a counter.

At each iteration of the counter i am performing some arithmetic, the code i have is as follows:-

q = 0
while q < len(df_raw_data):
    df_raw_data.iloc[q,5] = (df_raw_data.iloc[q,3] * 8950) + (df_raw_data.iloc[q,4])
    q = q + 1
This code works and i fully understand it however it takes ages and i wanted to know if there was a better way of loop through large data sets.

Thank you
Reply


Messages In This Thread
Looping Through Large Data Sets - by JoeDainton123 - Oct-02-2020, 06:59 PM
RE: Looping Through Large Data Sets - by buran - Oct-02-2020, 07:07 PM
RE: Looping Through Large Data Sets - by buran - Oct-03-2020, 04:06 AM
RE: Looping Through Large Data Sets - by buran - Oct-17-2020, 06:27 AM
RE: Looping Through Large Data Sets - by buran - Oct-17-2020, 02:44 PM
RE: Looping Through Large Data Sets - by jefsummers - Oct-18-2020, 12:53 PM
RE: Looping Through Large Data Sets - by buran - Oct-18-2020, 02:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Peculiar pattern from printing of sets SahandJ 7 1,672 Dec-29-2021, 06:31 PM
Last Post: bowlofred
  How does one combine 2 data sets ? detlefschmitt 2 1,694 Sep-03-2021, 03:38 AM
Last Post: detlefschmitt
  Looping to read data in database CEC68 1 1,711 Sep-24-2020, 08:54 PM
Last Post: scidam
  comprehension for sets Skaperen 2 1,870 Aug-07-2020, 10:12 PM
Last Post: Skaperen
  Extract data from large string pzig98 1 2,133 Jul-20-2020, 12:39 AM
Last Post: Larz60+
  Moving large amount of data between MySql and Sql Server using Python ste80adr 4 3,408 Apr-24-2020, 01:24 PM
Last Post: Jeff900
  alternative to nested loops for large data set JonnyEnglish 2 2,574 Feb-19-2020, 11:26 PM
Last Post: JonnyEnglish
  Looping JSON data graham23s 1 2,063 Jul-01-2019, 09:37 PM
Last Post: nilamo
  Sort sets by item values Sergey 4 69,834 Apr-19-2019, 10:50 AM
Last Post: Sergey
  Problem with character sets Pedroski55 4 3,735 Mar-04-2019, 02:35 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

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