E10. Display the contents of the column containing the sum of each Pokemon's base stats for each Pokemon. You may have t

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

E10. Display the contents of the column containing the sum of each Pokemon's base stats for each Pokemon. You may have t

Post by answerhappygod »

E10. Display the contents of the column containingthe sum of each Pokemon's base stats for eachPokemon. You may have to read the description of the data-set onkaggle to figure out which column this is 😉.
E11. Display those rows where the sum of Pokemon's base stats isat least 550. There should be 87 Pokemon.
E12. Display those rows where the sum of the Pokemon's basestats is at least 550 and where the Pokemon hasan attack stat less than 100. There should be 25 suchPokemon.
E13. Display each of the Dragon type Pokemon. There should be 45of them.
E14. Display the average (mean) Attack stat for theall of the Dragon type Pokemon. The mean should be approximately94.67.
E15. Display the all of the Pokemon starting at the row #493,and ending at row #649, but only display the Name, Type1, Type 2, Exp Group, and Capture Rate columns.The first row (plus column headers) should look similar to thefollowing:
E16. Display the names of all the Pokemon whose names are atmost 5 letters long. There should be 55 of them. The first and lastshould be Ekans and Hoopa, respectively.
E17. Display the names of all of the Pokemon that have theability Shed Skin. There should be 16 pokemon total.
E19. Display those rows where a Pokemon has the WaterAbsorb ability but is not a Water-type pokemon. Thereshould only be 3 such Pokemon.
E18. Display the names and ablities for all of the Pokemon thathave at least 3 possible abilities. To do this,you'll have to use the pandas function str.count to countthe number of commas in the Abilities attribute.. You canread about how this function works here. There should be 441pokemon total.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply