stats.py: We can create a numpy array from separate lists by specifying a format for each field: arr = np.zeros(4, dtype={'names': ('name', 'age', 'major', 'gpa'),                                         'formats': ('U50', 'i4', 'U4', 'f8')}) arr['name'] = ['Alice', 'Bob', 'Carol', 'Dennis'] arr['age'] = [21, 25, 18, 29] arr['major'] = ['CS', 'Math', 'Chem', 'Phys'] arr['gpa'] = [3.8, 3.2, 4.0, 3.5] where U50 is a string of max length 50, i4 is a 4-byte integer, U4 is a string of max length 4, and f8 is an 8-byte floating-point number. Then arr has value array([('Alice', 21, 'CS', 3.8), ('Bob', 25, 'CS', 3.2), ('Carol', 18, 'Chem', 4. ), ('Dennis', 29, 'Phys', 3.5)], dtype=[('name', '

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

stats.py: We can create a numpy array from separate lists by specifying a format for each field:
arr = np.zeros(4, dtype={'names': ('name', 'age', 'major', 'gpa'),

                                        'formats': ('U50', 'i4', 'U4', 'f8')})
arr['name'] = ['Alice', 'Bob', 'Carol', 'Dennis']
arr['age'] = [21, 25, 18, 29]
arr['major'] = ['CS', 'Math', 'Chem', 'Phys']
arr['gpa'] = [3.8, 3.2, 4.0, 3.5]


where U50 is a string of max length 50, i4 is a 4-byte integer, U4 is a string of max length 4, and f8 is an 8-byte floating-point number. Then arr has value

array([('Alice', 21, 'CS', 3.8), ('Bob', 25, 'CS', 3.2),
('Carol', 18, 'Chem', 4. ), ('Dennis', 29, 'Phys', 3.5)],
dtype=[('name', '<U50'), ('age', '<i4'), ('major', '<U4'), ('gpa', '<f8')])

Then, for example, arr[’name’] will give an array of just the student names.
Write a program that reads the file roster2.dat that has this format:

name,age,major,gpa


Convert this to a numpy array as shown above. Then use that array to compute and print each of the following:
(a) The average GPA of all students
(b) The maximum GPA of students majoring in CS
(c) The number of students with a GPA over 3.5
(d) The average GPA of students who are at least 25 years old
(e) The major that has the highest average GPA among students at most 22 years old
For example, for the four students listed, the program should print:
3.625
3.8
2
3.35
Chem

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education