Python Forum
How can I add certain elements in this 2d data structure and calculate a mean
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I add certain elements in this 2d data structure and calculate a mean
#1
# ------------------------------------------------------------
# Import libraries
# ------------------------------------------------------------
# =====> Write your code here
mean = 0
index = 0
# ------------------------------------------------------------
# Constants
# ------------------------------------------------------------
# =====> Write your code here
Pass = (mean >= 50)
Fail = (mean <= 49)
# ------------------------------------------------------------
# Global variables
# ------------------------------------------------------------
myClass = [["Lang", "Carla", 49, 71, 95, 50],
           ["Bucklund", "Pia", 86, 78, 83, 64],
           ["Lang", "Jason", 95, 57, 92, 62],
           ["Dimitrousis", "Hector", 93, 45, 89, 96],
           ["Owens", "Sunna", 45, 50, 46, 54],
           ["Goldin", "Sandra", 25, 60, 45, 55],
           ["Giles", "Seth", 67, 73, 93, 64],
           ["Gurillo", "Melanie", 88, 88, 62, 79],
           ["Rykiel", "Kari", 67, 92, 54, 86],
           ["Shailes", "Dennis", 56, 70, 84, 62]]

# =====> Write your code here
for mean in myClass:
    for total in myClass[index:]
    total = myClass[2] + myClass[3] + myClass[4] + myClass[5]
    index += 1
    print (total)
This was my attempt at doing it by indexing the first row and moving down by adding one each time to the 2d data structure place. I want to be able to calculate the mean of the last four numbers in the data structure. The numbers would be [2][3][4][5] but I do not know how to calculate it each time for each row on the list. I tried using for mean in myClass[index]: but it would give no extra help. Any ideas
Reply


Messages In This Thread
How can I add certain elements in this 2d data structure and calculate a mean - by TheOddCircle - May-26-2022, 08:09 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  script to calculate data in csv-files ledgreve 0 1,134 May-19-2023, 07:24 AM
Last Post: ledgreve
  ValueError: Length mismatch: Expected axis has 8 elements, new values have 1 elements ilknurg 1 5,226 May-17-2022, 11:38 AM
Last Post: Larz60+
Question Change elements of array based on position of input data Cola_Reb 6 2,185 May-13-2022, 12:57 PM
Last Post: Cola_Reb
  calculate data using 1 byte checksum korenron 2 3,001 Nov-23-2021, 07:17 AM
Last Post: korenron
  Appropriate data-structure / design for business-day relations (week/month-wise) sx999 2 2,829 Apr-23-2021, 08:09 AM
Last Post: sx999
  what data structure to use? Winfried 4 2,863 Mar-16-2021, 12:11 PM
Last Post: buran
  Yahoo_fin, Pandas: how to convert data table structure in csv file detlefschmitt 14 7,872 Feb-15-2021, 12:58 PM
Last Post: detlefschmitt
  Sorting Elements via parameters pointing to those elements. rpalmer 3 2,646 Feb-10-2021, 04:53 PM
Last Post: rpalmer
  How to use Bunch data structure moish 2 2,949 Dec-24-2020, 06:25 PM
Last Post: deanhystad
  Correct data structure for this problem Wigi 13 4,708 Oct-09-2020, 11:09 AM
Last Post: buran

Forum Jump:

User Panel Messages

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