Question: In the code below, we convert two variables in the dataset sharkds to factor, and check the proportion of deal going through (see output). What
In the code below, we convert two variables in the dataset sharkds to factor, and check the proportion of deal going through (see output). What happens if I do not convert the two variables to factor, yet try to run the same code to find the proportion of deal going through. ```{r} sharkds$Deal_Status <- as.factor(sharkds$Deal_Status) sharkds$Deal_Shark <- as.factor(sharkds$Deal_Shark) sharkds %>% count(Deal_Status)%>% mutate(freq=n/sum(n)) ``` Deals
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
