Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Download the file pokemon 2018.csv data file from https://www.kaggle.com/alopez247/pokemon/data and solve Q7 Q8 in R Let's go back to the original data and make a
Download the file pokemon 2018.csv data file from https://www.kaggle.com/alopez247/pokemon/data and solve Q7 Q8 in R
Let's go back to the original data and make a few more plot types. Pokemon has been through many different generations. Are pokemon getting stronger? Let's go back to the Attack vs Defense plot and set the colour of every point to be uniquely defined by the generation. We can similarly define the character used in plotting with the argument "pch". Here I set it to also vary with generation # these two plots will be #First the all in one strategy: plot (poke [, "Attack"], poke [, "Defense"],ylab-"Defense",xlab-"Attack", equivalent co- poke [ , "Generation"],pche poke [ , "Generation"], main-"Make your own sensible title to go here") The plot looks nice but doesn't clarify which points go with which generation Add a legend giving it the location of the legend, and all of the line type or point arguments that you used when plotting. If I was instead making this plot usingStep 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