Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

vec1

vec1 <- c(2,1,1,3,2,1,0) vec2 <- c(3,8,2,2,0,0,0) 

b. Using vec1 and vec2 from (a), write and execute a line of code that multiplies the corresponding elements of the two vectors together if their sum is greater than 3. Otherwise, the code should simply sum the two elements.

c. In the editor, write R code that takes a square character matrix and checks if any of the character strings on the diagonal (top left to bottom right) begin with the letter g, lowercase or upper- case. If satisfied, these specific entries should be overwritten with the string "HERE". Otherwise, the entire matrix should be replaced with an identity matrix of the same dimensions. Then, try your code on the following matrices, checking the result each time:

i. mymat <- matrix(as.character(1:16),4,4)

ii. mymat <- matrix(c("DANDELION","Hyacinthus","Gerbera", "MARIGOLD","geranium","ligularia",

 "Pachysandra","SNAPDRAGON","GLADIOLUS"),3,3) 

iii. mymat <- matrix(c("GREAT","exercises","right","here"),2,2, byrow=T)

Hint: This requires some thoughtyou will find the func- tions diag from Section 3.2.1 and substr from Section 4.2.4 useful

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 Management System MCQs Multiple Choice Questions And Answers

Authors: Arshad Iqbal

1st Edition

1073328554, 978-1073328550

More Books

Students also viewed these Databases questions

Question

vec1

Answered: 1 week ago