Question: Use python pandas library. This is the link to stone.csv in an excel document! https://docs.google.com/spreadsheets/d/1TOeeQiI6qHcO8zyrAG1J33NVpgNvoxNHwFP2zN-aOK8/edit?usp=sharing Question 3 (20 Pts) The csv file (stone.csv) contains the
Use python pandas library. This is the link to stone.csv in an excel document!
https://docs.google.com/spreadsheets/d/1TOeeQiI6qHcO8zyrAG1J33NVpgNvoxNHwFP2zN-aOK8/edit?usp=sharing

Question 3 (20 Pts) The csv file (stone.csv) contains the prices and other attributes of almost 54,000 diamonds. 1. Write a Pandas program to read a csv file from a specified source and print the first 5 rows. 2. Write a Pandas program to rename two of the columns of the diamonds Dataframe. 3. Write a Pandas program to remove multiple rows at once (axis=0 refers to rows) from diamonds dataframe 4. Write a Pandas program to filter the DataFrame rows to only show carat weight at least 0.3. 5. Write a Pandas program to find the details of the diamonds where length > 5, width > 5 and depth > 5 6. Write a Pandas program to calculate the mean of price for each cut of diamonds DataFrame. 7. Write a Pandas program to calculate count, minimum, maximum price for each cut of diamonds DataFrame. 8. Write a Pandas program to read rows 0,5, 7 and all columns of diamonds DataFrame. 9. Write a Pandas program to count the number of missing values in each Series of diamonds DataFrame. 10. Write a Pandas program to check the number of rows and columns and drop those row if any' values are missing in a row of diamonds DataFrame
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
