Publications by Bryan Persaud
Data 609 HW 5
Ex.1 Carry out the logistic regression (Example 22 on Page 94) in R using the data x 0.1 0.5 1.0 1.5 2.0 2.5 y 0 0 1 1 1 0 The formula is \(y(x) = \frac{1}{1 + exp[-(a + bx)]}\) Solution: x <- c(0.1, 0.5, 1.0, 1.5, 2.0, 2.5) y <- c(0, 0, 1, 1, 1, 0) glm(y ~ x, family = "binomial") ## ## Call: glm(formula = y ~ x, family = "binomial") ## #...
1224 sym R (3954 sym/12 pcs)
Data 698 Final Project
Introduction Streaming services are impacting the way we watch TV. With the start of Netflix viewership of TV shows have started to change and people started to move away from the norm of watching cable TV. Over the years there have been a boom of streaming services that changed the way TV is looked at. My project looks to see the trends in strea...
14880 sym R (20894 sym/26 pcs) 5 img