Home /
Expert Answers /
Computer Science /
how-do-i-make-a-vector-in-r-studio-to-match-this-for-the-three-lines-of-code-labeled-with-the-bike-pa427
(Solved): How do I make a vector in R studio to match this?
For the three lines of code labeled with the BIKE ...
How do I make a vector in R studio to match this?
For the three lines of code labeled with the BIKE variable, how
would I combine those three into one single vector? Thanks
126 127 128 **Grading: ** 5 points 129 130 131 132 *al:* Are there any influential data points in this dataset? Identify the point (s) by row, then investigate and explain what makes it so unusual through the use of the scatterplot matrix (its not possible to see why it's unusual with summary on the individuals variables). 133{r q2al investigation} 134 #BIKE [?,] #Replacing the ? with a vector of the row number (s) will print those row(s) to the screen 135 #pairs() #scatterplot matrix 136 #summary(BIKE) #summaries of each variable 137 BIKE [89,] 138 BIKE [150,] 139 BIKE [337,] 140 pairs (Demand~., data=BIKES) 141 summary (BIKE) 142 143 2