Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can anyone tell me how to do these? They are on the R software some of them I have completed but they are all wrong

image text in transcribed

Can anyone tell me how to do these? They are on the R software some of them I have completed but they are all wrong

\# Q3d \# Use the sum() and is.na() functions to count the number of observations that have a price. \#\#\#\#\#\# Hint: Since the ! means "not", putting an ! in front of is.na() counts the non-missing values. sum(is.na(wine\$price[rows])) \# Q4a \# Use the mean() function to calculate the average points for the wines in the dataset. mean(wine\$points, na.rm=TRUE) \# Q4b \# Use the mean() function to calculate the average price for the wines in the dataset. mean(wine $ price, na. rm= TRUE) \# Q5a \# Use the mean() function to calculate the average points for the Napa Sonoma sub-region. \#\#\#\#\#\# Your code should be a single line and will use the square brackets for subsetting... mean (wine\$points [wine $ Sonoma]) \# Q5b \# Use the mean() function to calculate the average price for the Napa Sonoma sub-regionusing a single line of code. mean (wine\$price [wine $ Sonoma]) \# Q6 \# Now we'll practice our counting skills again. \#\#\#\#\# The rating scale being used by these tasters orignally had 91 as the highest possible score \#\#\#\#\# and now goes to 100 for exceedingly delicious wines. \#\#\#\#\#\# Use the sum() function on a logical vector that checks for whether points are greater than 91 or not \#\#\#\#\# to count the number of wine ratings with more than 91 points. sum(wine $ points>91) \# Q7a \# Now we'll practice subsetting on more than one criteria. \#\#\#\#\#\# Use the mean() function to compute the average points for wines \#\#\#\#\#\# that are chardonnay and from the Napa Sonoma sub-region. \# Q7b \# More practice subsetting on more than one criteria. \#\#\#\#\#\#\# Use the mean() function to compute the average price for wines that are \#\#\#\#\#\#\# either chardonnay or are from the finger lakes sub-region. \# Q8 \# Use the median() function to find the median price for \#\#\#\#\# a Cabernet Sauvignon that is rated higher than 91 points

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

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2019 Wurzburg Germany September 16 20 2019 Proceedings Part 2 Lnai 11907

Authors: Ulf Brefeld ,Elisa Fromont ,Andreas Hotho ,Arno Knobbe ,Marloes Maathuis ,Celine Robardet

1st Edition

3030461467, 978-3030461461

More Books

Students also viewed these Databases questions