Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Calculus Early Transcendentals

Authors: William L. Briggs, Lyle Cochran, Bernard Gillett

2nd edition

ISBN: 321954428, 321954424, 978-0321947345

More Books

Students also viewed these Mathematics questions