Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Where's the endless loop?
#5
You are measuring how long it takes the for loop to do 10 plots.

Why are you doing this:
plt.bar(key,my_dict[key])
I assume that plt is mathplotlib.pyplot and that you want to plot df['DTE'] counts for df['DTE'] < 251. What your code does is make a bunch of bar charts where each chart has 1 bar.

If you want counts for df['DTE'] < 251 let pandas do the work for you. In the example below I plot the count of df['DTE'] for DET values in the range 20 to 50.
import random
import matplotlib.pyplot as plt
import pandas as pd
df = pd.DataFrame({'DTE':[random.randint(1,101) for _ in range(1000)]})
counts = df.loc[(df['DTE'] >= 20) & (df['DTE'] <= 50)].value_counts().sort_index(ascending=True)
counts.plot(kind='bar')
plt.show()
Mark17 likes this post
Reply


Messages In This Thread
Where's the endless loop? - by Mark17 - Oct-01-2021, 02:08 PM
RE: Where's the endless loop? - by Mark17 - Oct-01-2021, 02:41 PM
RE: Where's the endless loop? - by Mark17 - Oct-01-2021, 03:02 PM
RE: Where's the endless loop? - by Mark17 - Oct-01-2021, 03:25 PM
RE: Where's the endless loop? - by deanhystad - Oct-01-2021, 03:36 PM
RE: Where's the endless loop? - by snippsat - Oct-01-2021, 04:51 PM
RE: Where's the endless loop? - by Mark17 - Oct-01-2021, 06:22 PM
RE: Where's the endless loop? - by deanhystad - Oct-01-2021, 08:24 PM
RE: Where's the endless loop? - by Mark17 - Oct-04-2021, 04:30 PM
RE: Where's the endless loop? - by deanhystad - Oct-04-2021, 04:37 PM
RE: Where's the endless loop? - by Mark17 - Oct-04-2021, 04:44 PM
RE: Where's the endless loop? - by deanhystad - Oct-04-2021, 04:51 PM
RE: Where's the endless loop? - by Mark17 - Oct-04-2021, 05:51 PM
RE: Where's the endless loop? - by deanhystad - Oct-04-2021, 06:25 PM
RE: Where's the endless loop? - by Mark17 - Oct-04-2021, 06:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  PyRun_SimpleFile calling multiprocessing Python Class cause endless init loop Xeno 2 1,131 Sep-19-2022, 02:32 AM
Last Post: Xeno
  Endless printing of a table djwilson0495 2 1,874 Aug-10-2020, 01:42 PM
Last Post: djwilson0495
  while with try and except gets stuck in an endless loop? pcarra 3 4,765 Mar-27-2019, 07:50 PM
Last Post: pcarra

Forum Jump:

User Panel Messages

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