Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Regarding Defined Functions
#1
I wrote a Python code for what's called rerandomization in statistics. See below:

number_data = int(input("Enter size of data for each group (they will be same): "))
sim_size = int(input("Enter number of sims: "))
alpha = float(input("Set alpha/significance level: "))
print()

list_treatment = []
list_control = []

def collect_data(number_data):
    print("Enter treatment data points")
    for i in range(number_data):
        entry = float(input("Enter treatment data point: "))
        list_treatment.append(entry)
    print()
    print("Enter control data points")
    for i in range(number_data):
        entry = float(input("Enter control data point: "))
        list_control.append(entry)
    return list_treatment, list_control
So the above chunk of code (function) returns list_treatment and list_control

I call this function somewhere downstream and then use what it returns for the function compute_mean(list_treatment, list_control)

collect_data(number_data)
print()

difference = compute_mean(list_treatment, list_control)
I was really worried that I'll get an error message but I didn't. It works. Just wondering if this is ok per the standards of good coding practice or worse, it can lead to errors that I haven't encountered because my code was simple.

Gracias.
Reply
#2
(Nov-05-2024, 01:10 AM)Hudjefa Wrote: Just wondering if this is ok per the standards of good coding practice or worse, it can lead to errors that I haven't encountered because my code was simple.
In this code you don't use at all the values returned by collect_data(). Instead, you are using the global variables list_treatment and list_control. This would be a problem if your code called collect_data() more than once. Because of this, it is better to use local variables and return them
number_data = int(input("Enter size of data for each group (they will be same): "))
sim_size = int(input("Enter number of sims: "))
alpha = float(input("Set alpha/significance level: "))
print()
 
def collect_data(number_data):
    print("Enter treatment data points")
    list_treatment = []
    for i in range(number_data):
        entry = float(input("Enter treatment data point: "))
        list_treatment.append(entry)
    print()
    print("Enter control data points")
    list_control = []
    for i in range(number_data):
        entry = float(input("Enter control data point: "))
        list_control.append(entry)
    return list_treatment, list_control
Later in your code, use the values returned
list_treatment, list_control = collect_data(number_data)
print()

difference = compute_mean(list_treatment, list_control)
When number_data is large, it will very soon become tedious to enter the values interactively. A much more flexible solution is to read the values from a file containing the data points, such as a csv file or a numpy data file.
buran and Hudjefa like this post
« We can solve any problem by introducing an extra level of indirection »
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Why built in functions are defined as class? quazirfan 5 4,063 Oct-23-2021, 01:20 PM
Last Post: Gribouillis
  Running scripts and location of saved interpreted user-defined classes and functions leodavinci1990 3 3,317 Aug-25-2020, 03:43 AM
Last Post: micseydel
  python library not defined in user defined function johnEmScott 2 4,953 May-30-2020, 04:14 AM
Last Post: DT2000
  User defined functions inside other user defined functions WildP 1 2,501 Jan-29-2020, 04:57 PM
Last Post: Clunk_Head
  Parenthesis in User-Defined Functions giorgitsu 2 2,577 Aug-07-2019, 12:56 PM
Last Post: ThomasL
  How do you make functions that take a variable that is not defined? magic 6 5,807 Sep-24-2018, 01:30 PM
Last Post: gruntfutuk

Forum Jump:

User Panel Messages

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