Python Forum
Using Dictionary to Test Evenness of Distribution Generated by Randint Function
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using Dictionary to Test Evenness of Distribution Generated by Randint Function
#3
Every time the number num is produced by the random generator, the program adds 1 to the count frequency[num] which counts the number of times this particular number was generated. The test is necessary because if the key num is not already in the dictionary, the line frequency[num] = frequency[num] + 1 would raise an exception. Initialy the dictionary is empty and contains no key.
Reply


Messages In This Thread
RE: Using Dictionary to Test Evenness of Distribution Generated by Randint Function - by Gribouillis - Feb-21-2021, 04:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  distribution fit Glaucio 1 266 Apr-07-2024, 12:30 AM
Last Post: Larz60+
  Weight Distribution 11drk9 11 789 Mar-13-2024, 06:08 AM
Last Post: Pedroski55
  random numbers, randint janeik 2 597 Nov-27-2023, 05:17 PM
Last Post: janeik
  Unexpected output while using random.randint with def terickson2367 1 554 Oct-24-2023, 05:56 AM
Last Post: buran
Information Best distribution method inovermyhead100 0 591 Jul-19-2023, 07:39 AM
Last Post: inovermyhead100
  HOW TO USE C# GENERATED DLL davide_vergnani 2 1,710 Jun-12-2023, 03:35 PM
Last Post: davide_vergnani
  passing dictionary to the function mark588 2 1,026 Dec-19-2022, 07:28 PM
Last Post: deanhystad
  How do I use a whl puython distribution? barryjo 6 1,843 Aug-15-2022, 03:00 AM
Last Post: barryjo
Sad Iterate randint() multiple times when calling a function Jake123 2 2,112 Feb-15-2022, 10:56 PM
Last Post: deanhystad
  How to test and import a model form computer to test accuracy using Sklearn library Anldra12 6 3,214 Jul-03-2021, 10:07 AM
Last Post: Anldra12

Forum Jump:

User Panel Messages

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