Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

THIS IS A R PROGRAMMING QUESTION PLEASE WRITE THE CODE FOR THESE FOUR QUESTIONS Question 1 The function `rep()` makes repeated series - for example

THIS IS A R PROGRAMMING QUESTION

PLEASE WRITE THE CODE FOR THESE FOUR QUESTIONS

Question 1

The function `rep()` makes repeated series - for example try `rep(4,times=5)` and `rep(c(1,2),each=3)`. Use `rep()` to enter the sequence `1 1 1 1 2 2 2 2 3 3 3 3` repeated 3 times. Now convert it to a factor with the levels "Low","Medium", and "High". Can you change the levels to "Never","Rarely","Sometimes"?

Question 2 We can use the output of `table()` with `barplot()` to view the frequency of levels in a factor. Can you provide a barplot for the factor from Question 1.

## Exercise 3 Convert the factor from Question 1 (the final part, with levels "Never","Rarely", and "Sometimes") into a character vector. Can you convert the character vector to a numeric vector?

## Exercise 4 A factor variable `a` has been created down below. Convert `a` into an ordered factor with levels `"Sm","Med","Lg","X-Lg"` (with `1` for "Sm"). How many values are equal to or larger than "Lg"? ```{r} a<-factor(scan(text="2 4 3 3 2 1 1 2 3 4 2 3 3 4 1 3 2 1 4 3 2 4")) a ```

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

Database Concepts International Edition

Authors: David M. Kroenke

6th Edition International Edition

0133098222, 978-0133098228

More Books

Students also viewed these Databases questions

Question

what are the provisions in the absence of Partnership Deed?

Answered: 1 week ago

Question

1. What is called precipitation?

Answered: 1 week ago

Question

1.what is dew ?

Answered: 1 week ago

Question

Bachelors degree in Information Systems or Statistics

Answered: 1 week ago