Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The surface area and volume of a sphere are given by following formulas, where r is the radius of the sphere and is a
The surface area and volume of a sphere are given by following formulas, where r is the radius of the sphere and is a constant. area = 4r 4 volume ==r Write a Python program that will ask the user to enter 7 different radiuses and store them in Pandas Series object called data. Plot a bar chart for all the radiuses and provide the necessary title and label Find the maximum, minimum and the average for the radiuses Display a sorted bar chart for all the radiuses and provide the necessary title and label From the data series object, add the index such that they will be named "radius1", "radius2",..., "radius 7". Plot a pie chart for the radiuses Convert the series object data into a dataframe called data1. Using the area formula above, calculate the area for every radius. Add the calculated areas as another column in the dataframe data1. Display the data in data1.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Code import pandas as pd import matplotlibpyplot as plt Ask the user to enter 7 different radius val...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