Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Use R to confirm your calculations in problem 1 ( the pollution data ) . Show the code you used and the subsequent output. The

Use R to confirm your calculations in problem 1(the pollution data).
Show the code you used and the subsequent output. The data can be generated using the
following commands:
PolutionRatios <- data.frame(
Ratio = c(76.50,6.03,3.51,9.96,4.24,7.74,9.54,41.70,1.84,2.5,1.54,
0.27,0.61,0.54,0.14,0.63,0.23,0.56,0.48,0.16,0.18),
Type = c( rep('Terrestrial',11), rep('Aquatic',10)))
head( PolutionRatios ) # Print out some data to confirm column names.
Hint: for computing the means and medians for each type of feeder separately,
the group_by() command we demonstated earlier in the chapter is convenient.

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

Students also viewed these Databases questions

Question

explain what is meant by the terms unitarism and pluralism

Answered: 1 week ago