Question: Add part 3, In R Programmer requirements Part 3: Accessing data in GitHub and mastering order of operations Your employer asks you to solve for
Add part 3, In R Programmer requirements

Part 3: Accessing data in GitHub and mastering order of operations Your employer asks you to solve for x using the quadratic equation: x=2abb24ac The values for a,b, and c are the min,max, and mean respectively of a data set that your employer has on GitHub. In module 3 , you were required to fork this repository to your Github and then clone it to your machine. To access the data set for determining a,b, and c we need to pull from the original repository onto our machine using GitHub. Before you can sync your fork with an upstream repository, however, you must configure a remote that points to the upstream repository. See LINK for help. After syncing, please click on data. RData in Module-4 to load the data set into your environment. Alternatively (and preferred), please use load followed by a character argument of the directory path to load the data set into your environment. - Please calculate a (using min ), b (using max ), and c (using mean) from data. Pay careful attention to follow order of operations (PEMDAS) - Use a,b, and c to solve for x using the quadratic equation. You will need to do this for + and - in the quadratic equation (i.e. you should have TWO answers). Please display the answer as x={x1,x2} using cat and paste. In part 2 we used paste to display the contents of a vector, here we use it to concatenate different vaariables into one expression. Example of how to use paste section ))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
