Question: title: The Most Effective Platform Based on Likes & Shares author: Emily Vanselow output: pdf _ document - - - ` ` ` { r

title: "The Most Effective Platform Based on Likes & Shares"
author: "Emily Vanselow"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
socialmedia <- read.csv("SocialMediaData.csv")
library(tidyverse)
library(Hmisc)
library(lubridate)
```
## Background
## Select/Create Variables
```{r}
total_engagement <- socialmedia %>%
select(Platform, Shares, Likes)
```
## Filter
```{R}
total_engagement <- total_engagement %>%
filter(Likes >=150, Shares >=50)
```
## Slice
```{R}
total_engagement <- total_engagement %>%
group_by(Platform)
```
## Estimate
```{R}
total_engagement %>%
summa
```
## Test
## Next Steps

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 Programming Questions!