Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Instructions Perform the tasks and answer the questions using Python code ( Jupyter notebook ) . Display results when applicable. Take screenshots of your work
Instructions
Perform the tasks and answer the questions using Python code Jupyter notebook Display results when applicable. Take screenshots of your work and paste them.
To start performing each task, import the Numpy library and give it an appropriate alias name. Find the version of the Numpy package on your system.
Task
Create a Numpy array of dimension with values ranging from to
Hint: Use the arange and reshape functions available in Numpy.
Task
Create a Numpy array holding values that are multiples of starting from to Print this array in reverse order using a single statement.
Task
Create an array of the height of students given below. Using aggregate functions, calculate the minimum height, maximum height, average height and standard deviation. Print the output up to a maximum of two decimal places.
Students height:
Task
The overall years of experience of directors are given below:
Their years of experience in previous companies are given below in respective order:
i Create an array that holds only the experience of directors in their current company.
ii Find the minimum, maximum and average years of experience of the directors in their current company.
iii Create an array that contains years of experience of directors that are greater than years. How many directors have more than years of experience?
Task
Create two arrays of dimension matrix using the two lists of numbers given below:
Find the product of the two matrices.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started