logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Gabriel GaboardiLaw
(5/5)

637 Answers

Hire Me
expert
Lynley DireenEngineering
(5/5)

557 Answers

Hire Me
expert
Umar AbdullaEconomics
(3/5)

882 Answers

Hire Me
expert
BIDESH DASMathematics
(/5)

663 Answers

Hire Me
R Programming
(5/5)

For all questions you should load tidyverse. You should not need to use any other libraries.

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

pizza

For this assignment, name your R file pizza.R

For all questions you should load tidyverse. You should not need to use any other libraries.

Load tidyverse with

suppressPackageStartupMessages(library(tidyverse))

Download the pizza.csv file from Brightspace and place it in the same folder/directory as your script file. Then in RStudio, set your Working Directory to your Source File location:

Load the pizza.csv file like this:

pizza <- read_csv('pizza.csv')

Round all float/dbl values to two decimal places.

If your rounding does not work the way you expect, convert the tibble to a dataframe by using as.data.frame()

All statistics should be run with variables in the order I state

E.g., “Run a regression predicting mileage from mpg, make, and type” would be:

lm(mileage ~ mpg + make + type...)

In each of these you must use at least two dplyr functions. You may use Google to look up how to do certain aspects.

Before attempting to answer these, or if you lose points upon an attempt, please review all CodeGrade information provided in the CodeGrade overview submodule - if you do not you are likely to lose points.

1. Create a dataframe containing driver names of instances where free_wine = 1, discount_customer = 1, and the order contained more than 4 pizzas. (There will be repeated names).

 ● The answers should look like the following:

If your CodeGrade output is <fct> instead of <chr>, you can use

as.character(driver) to convert it

Assign that to Q1

2. Create a variable that is the ratio of bill to pizza, called ratio. What is the mean of that value (call the value mean_ratio)?

Assign this to Q2

3. For each day of the week, what is the variance in pizzas?

The created values should be called var_pizzas.

The answer should be assigned to Q3 and show look like the following:

4. Which operator had the higher average bill?

The answer should be assigned to Q4.

5. What was the highest amount of free wine given by day/driver combination? (For instance, Friday Bruno was 13, while Wednesday Salvator was 12)

(5/5)
Attachments:

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme