Question: Which function of the ggplot is used to plot the subsets of data together? Fix the R code below to plot the subplots for the

Which function of the ggplot is used to plot the subsets of data together?
Fix the R code below to plot the subplots for the variable house.
df <- data.frame(house = rep(c("A","B"), each=10),
size =1:100+ rnorm(100,sd=3),
value =1:100+ rnorm(100,sd=10))
str(df)
ggplot(df, aes(size, value, color=house))+ geom_point(shape=21, size=5)
To receive full point, submit the answer of the question and corrected R code in the text box

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!